@extends('layout.sidebar') @section('content') {{ Form::hidden('profiles', action('StudentIncidenceController@getProfilesUser', array()), array('id'=>'profiles')) }} {{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoptionsPrifile', array()), array('id'=>'sections')) }} {{ Form::hidden('levels', action('LevelController@getActiveLevelsByProfile', array()), array('id'=>'levels')) }} {{ Form::hidden('courses', action('CourseController@getCoursesByLevelSectionYear', array()), array('id'=>'courses')) }} {{ Form::hidden('students', action('StudentIncidenceController@postStudents', array()), array('id'=>'students')) }} {{ Form::hidden('incidencesRoute', action('IncidenceSetupController@getIncidencesBySchoolYear', array()), array('id'=>'incidencesRoute')) }} {{ Form::hidden('incidencesRouteBySubject', action('IncidenceSetupController@getIncidencesBySubject', array()), array('id'=>'incidencesRouteBySubject')) }} {{ Form::hidden('subjects', action('StudentIncidenceController@getSubjects', array()), array('id'=>'subjects')) }} {{ Form::hidden('currentSchoolYear',$currentSchoolYear->serial_scy, array('id'=>'currentSchoolYear')) }} {{ Form::open(array('class'=>'form-signin','id'=>'frm_students','url'=>action('StudentIncidenceController@postReport',array()))) }}
{{ Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('id'=>'serial_scy','class'=>'form-control')) }}
@if(count($user_profile)==1) {{ Form::hidden('hasProfiles',1, array('id'=>'hasProfiles')) }} @else {{ Form::hidden('hasProfiles',0, array('id'=>'hasProfiles')) }} @endif
{{ Form::label('serial_set','2. Sección:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_set',array(''=>'Seleccione'),'',array('id'=>'serial_set','class'=>'form-control')) }}
{{ Form::label('serial_lvl','3. Nivel:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_lvl',array(''=>'Seleccione'),'',array('id'=>'serial_lvl','class'=>'form-control')) }}
{{ Form::label('serial_crs','4. Paralelo:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_crs',array(''=>'Seleccione'),'',array('id'=>'serial_crs','class'=>'form-control')) }}
{{ Form::label('start_date','5. Fecha de inicio:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::text('start_date','',array('id'=>'serial_lvl','class'=>'form-control datepicker')) }}
{{ Form::label('end_date','6. Fecha de fin:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::text('end_date','',array('id'=>'serial_lvl','class'=>'form-control datepicker')) }}
{{ Form::label('incidences','7. Inicidencias:',array('class'=>'col-md-6 col-sm-6 control-label')) }}
{{ Form::select('serial_ica[]', array('ALL'=>'Todas'),array('ALL'), array('class'=>'form-control ', 'id'=>'serial_ica','multiple'=>'multiple')) }}
{{Form::close()}} {{ HTML::script('js/gradeReport/incidence/index.js') }} @stop()