@extends('layout.sidebar') @section('content') {{ Form::hidden('addresses', action('CheckController@postStudentAddresses', array()), array('id'=>'addresses')) }} {{ Form::hidden('updateStudent', action('CheckController@postCheckTransport', array()), array('id'=>'updateStudent')) }} {{ Form::open(array('url' => 'check/check-transport', 'class' => 'form-signin', 'method' => 'POST')) }}


{{ Form::label('Verificación de Transporte', null, array('class' => 'control-label'))}} {{ Form::text('barcode', null, array('id'=>'barcode','class' => 'typeahead form-control', 'placeholder' => 'Busque por Nombre o Apellido',"data-typeahead-target"=>"serial_grd","autocomplete"=>"off")) }} {{ Form::hidden('serial',null,array('id'=>'serial'))}}



El estudiante:
{{ Form::text('name', null, array('id'=>'name','class' => 'form-control','readOnly'=>'readOnly')) }}
, esta autorizado para transporte en las siguientes direcciones

{{Form::close()}} {{ HTML::script('js/check/index.js') }} @stop