{{ Form::open(array('id' => 'familyReferencesForm')) }} {{ Form::hidden('urlsavefamilyreferences', action('DceController@postSaveOptionDceDepartment', array()), array('id'=>'urlsavefamilyreferences')) }} {{ Form::hidden('urleditfamilyreferences', action('DceController@getFamilyReferencesInfo', array()), array('id'=>'urleditfamilyreferences')) }} {{ Form::hidden('loadfamilyreferencesstd', action('DceController@postFamilyReferencesByStd', array()), array('id'=>'loadfamilyreferencesstd')) }} {{ Form::hidden('editDCE',$editDCE,array('id' => 'editDCE')) }}
{{ Form::label('','Números de hermanos: ')}} {{Form::select('number_siblins', array('' => '-Seleccione-','0' => '0 ','1' => '1 ', '2' => '2 ','3' => '3 ', '4' => '4 ','5' => '5 '),$student->number_siblins,array('id'=>'number_siblins','class'=>'answer edit-data'))}}
{{ Form::label('','Lugar que ocupa en nacimiento: ')}} {{Form::select('siblins_post_between', array('' => '-Seleccione-','Unico' => 'Unico','1' => 'Primero', '2' => 'Segundo','3' => 'Tercero', '4' => 'Cuarto','5' => 'Quinto'),$student->siblins_post_between,array('id'=>'siblins_post_between','class'=>'answer edit-data'))}}
{{ Form::label('','Indique si el estudiante ha vivido las siguientes experiencias. (Puede marcar más de dos)') }}
@if(count($changeStructures)>0) @foreach($changeStructures as $structure) {{Form::checkbox('structure_'.$structure->serial_dca, $structure->serial_dca,$structure->selected,array('id'=>'structure_'.$structure->serial_dca, 'class' => 'edit-data'))}} {{ Form::label('',$structure->name_dca,array('class'=>'answer')) }}
@endforeach @endif
{{ Form::label('','Si usted considera pertinente anote información que cree debe conocer el Departamento de Consejería Estudiantil. Ejemplos: Relación entre padres, restricciones legales, alguna aclaración de la respuesta anterior.') }}
{{Form::textarea('comment_family_references',$counselingDepartment->comment_family_references,['size' => '30x3','id' => 'comment_family_references', 'class' => 'form-control edit-data', 'autocomplete' => 'off'])}}
{{ Form::close() }} {{ HTML::script('js/dce/loads/familyReferences.js') }}