INFORMACIÓN ACADÉMICA
{{ Form::label('','El estudiante ha sido diagnosticado con: trastorno de déficit de atención con / sin hiperactividad, superdotación, problemas de aprendizaje, problemas de conducta, problemas emocionales o algún estado de vulnerabilidad?:')}}
{{ Form::label('',($dceYearData['superdotation'] == 'YES') ? 'Sí' : 'No')}}
@if($student->type_std == "NEW")
{{ Form::label('','Institución educativa de procedencia: ')}}
{{ Form::label('previous_school_std',isset($student->previous_school_std) ? $student->previous_school_std : 'No Disponible') }}
@endif
{{ Form::label('','¿El estudiante ha repetido algún año?') }}
{{ Form::label('',($dceYearData->year_repeated != '') ? 'Sí' : 'No')}}
@if($dceYearData->year_repeated != '')
{{ Form::label('','Especificar cuál/cuáles: ') }}
{{ Form::label('year_repeated',$dceYearData->year_repeated) }}
@endif
@if($dceYearData->year_repeated == '')
{{ Form::label('','Indique el año de escolaridad de ingreso del estudiantes a la institución: ') }}
{{ Form::label('',isset($counselingDepartment->year_school_entry) ? $counselingDepartment->year_school_entry : 'No Disponible')}}
@endif
@if(count($activities)>0)
{{ Form::label('','Actividades preferidas: (hobbies, participación en extracurriculares, clubes etc.)') }}
@foreach($activities as $activity)
{{ Form::label('',$activity->name_dca,array('class'=>'answer'))}}
|
{{Form::label('activity_'.$activity->serial_dca,(isset($activity->selected) ? 'Sí' : 'No'),array('id' => 'activity_'.$activity->serial_dca))}}
|
@endforeach
@endif
@if(count($strengths)>0)
{{ Form::label('','Fortalezas del/la estudiante: (Cualidades personales, Logros académicos, dignidades alcanzadas, habilidades desarrolladas etc.)') }}
@foreach($strengths as $strength)
{{ Form::label('',$strength->name_dca,array('class'=>'answer'))}}
|
{{Form::label('activity_'.$strength->serial_dca,(isset($strength->selected) ? 'Sí' : 'No'),array('id' => 'activity_'.$strength->serial_dca))}}
|
@endforeach
@endif
{{ Form::label('','¿Qué puede mejorar su hijo(a)?') }}
{{ Form::label('',($dceYearData->areas_improve != '') ? $dceYearData->areas_improve : 'Sin Comentarios')}}
{{ Form::label('','¿El Colegio ha solicitado nivelación académica?') }}
{{ Form::label('',($dceYearData['academic_leveling'] == 'YES') ? 'Sí' : 'No')}}
@if($dceYearData['academic_leveling'] == 'YES')
{{ Form::label('','En qué asignatura: ') }}
{{ Form::label('',$dceYearData->subjects_academic_leveling)}}
@endif