{{ Form::open(array('id' => 'familyRelationshipForm')) }} {{ Form::hidden('urlsavefamilyrelationship', action('DceController@postSaveOptionDceYearData', array()), array('id'=>'urlsavefamilyrelationship')) }}

5.1 ¿Cómo describiría la relación que el o la estudiante mantiene con la familia?



{{ Form::label('','Con el padre la relación es:') }}
@if(count($relationFather)>0) @foreach($relationFather as $father) {{Form::checkbox('relationshipfather_'.$father->serial_dca, $father->serial_dca,$father->selected,array('id'=>'relationshipfather_'.$father->serial_dca,'relation'=>'FATHER'))}} {{ Form::label('',$father->name_dca,array('class'=>'answer')) }}
@endforeach @endif
{{ Form::label('','Con la madre la relación es:') }}
@if(count($relationMother)>0) @foreach($relationMother as $mother) {{Form::checkbox('relationshipmother_'.$mother->serial_dca, $mother->serial_dca,$mother->selected,array('id'=>'relationshipmother_'.$mother->serial_dca,'relation'=>'MOTHER'))}} {{ Form::label('',$mother->name_dca,array('class'=>'answer')) }}
@endforeach @endif

5.2 Descripción de la conducta de su hijo/a:



{{ Form::label('','Considere cuál es la conducta más frecuente de su hijo(a). Puede contestar más de una opción') }}
@if(count($behavior)>0) @foreach($behavior as $option) {{Form::checkbox('behavior_'.$option->serial_dca, $option->serial_dca,$option->selected,array('id'=>'behavior_'.$option->serial_dca))}} {{ Form::label('',$option->name_dca,array('class'=>'answer')) }}
@endforeach @endif
{{ Form::label('','¿Con quién pasa su hijo(a) en la tarde:?') }}
{{Form::radio('who_cares_afternoon', 'Padre',($dceYearData->who_cares_afternoon == 'Padre'),array('id' => 'who_cares_afternoon_Padre'))}} {{Form::label('','Padre',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Madre',($dceYearData->who_cares_afternoon == 'Madre'),array('id' => 'who_cares_afternoon_Madre'))}} {{Form::label('','Madre',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Hermanos',($dceYearData->who_cares_afternoon == 'Hermanos'),array('id' => 'who_cares_afternoon_Hermanos'))}} {{Form::label('','Hermanos',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Abuelos',($dceYearData->who_cares_afternoon == 'Abuelos'),array('id' => 'who_cares_afternoon_Abuelos'))}} {{Form::label('','Abuelos',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Tíos',($dceYearData->who_cares_afternoon == 'Tíos'),array('id' => 'who_cares_afternoon_Tíos'))}} {{Form::label('','Tíos',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Niñera',($dceYearData->who_cares_afternoon == 'Niñera'),array('id' => 'who_cares_afternoon_Niñera'))}} {{Form::label('','Niñera',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Asistente Doméstica',($dceYearData->who_cares_afternoon == 'Asistente Doméstica'),array('id' => 'who_cares_afternoon_Asistente'))}} {{Form::label('','Asistente Doméstica',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Centro Escolar',($dceYearData->who_cares_afternoon == 'Centro Escolar'),array('id' => 'who_cares_afternoon_Centro'))}} {{Form::label('','Centro Escolar',array('class'=>'answer'))}}
{{Form::radio('who_cares_afternoon', 'Solo',($dceYearData->who_cares_afternoon == 'Solo'),array('id' => 'who_cares_afternoon_Solo'))}} {{Form::label('','Solo',array('class'=>'answer'))}}
{{ Form::label('','¿Cuánto tiempo comparte diariamente con su hijo?:') }}
{{Form::radio('time_share_with_parents', '-30 minutos',($dceYearData->time_share_with_parents == '-30 minutos'),array('id' => 'time_share_with_parents_-30minutos'))}} {{Form::label('','menos de 30 minutos',array('class'=>'answer'))}}
{{Form::radio('time_share_with_parents', '30minutos - 1hora',($dceYearData->time_share_with_parents == '30minutos - 1hora'),array('id' => 'time_share_with_parents_30minutos-1hora'))}} {{Form::label('','30minutos - 1hora',array('class'=>'answer'))}}
{{Form::radio('time_share_with_parents', '2horas - 3horas',($dceYearData->time_share_with_parents == '2horas - 3horas'),array('id' => 'time_share_with_parents_2horas-3horas'))}} {{Form::label('','2horas - 3horas',array('class'=>'answer'))}}
{{Form::radio('time_share_with_parents', '+4 horas',($dceYearData->time_share_with_parents == '+ 4horas'),array('id' => 'time_share_with_parents_+4horas'))}} {{Form::label('','4horas en adelante',array('class'=>'answer'))}}
{{ Form::close()}} {{ HTML::script('js/dce/loads/familyRelationship.js') }}