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