@extends('layout.sidebar')
@section('content')
{{Form::model('',array())}}
Ficha Médica
{{ Form::label('Escoja el tipo de usuario', null, array('class' => 'control-label'))}}
{{ Form::label('Estudiante', null, array('class' => 'control-label'))}}
{{ Form::radio('type', 'STUDENT',true,array('id'=>'type')) }}
{{ Form::label('Representante', null, array('class' => 'control-label'))}}
{{ Form::radio('type', 'GUARDIAN', false, array('id'=>'type')) }}
{{ Form::label('Empleado', null, array('class' => 'control-label'))}}
{{ Form::radio('type', 'EMPLOYEE',false ,array('id'=>'type')) }}
{{ Form::label('Buscar por: "Nombre/ Apellido/ CI"', null, array('class' => 'control-label'))}}
{{ Form::text('barcode_std', null, array('id'=>'barcode_std','class' => 'typeahead form-control', 'placeholder' => 'Nombre/Apellido del Estudiante',"data-typeahead-target"=>"serial_std","autocomplete"=>"off")) }}
{{Form::close()}}
{{ HTML::script('js/medical/index.js') }}
@stop