@extends('layout.sidebar') @section('title', $namePage) @section('content') {{ Form::hidden('filters', action('FilterController@postFilters', array()), array('id'=>'filters')) }} {{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoptions', array()), array('id'=>'sections')) }} {{ Form::hidden('courses', action('CourseController@getAllbysectionoptions', array()), array('id'=>'courses')) }}

{{$namePage}}


{{ Form::open(array('url' => 'student/identification-report', 'class' => 'form-signin', 'method' => 'POST','id'=>'frmReport')) }}
{{ Form::label('serial_scy','* 1. Año Lectivo:') }}
{{ Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('class'=>'form-control')) }}

{{ Form::label('serial_set','* 2. Sección:') }}
{{ Form::select('serial_set', array('' => '-Seleccione-'), '', array('class'=>'form-control', 'id'=>'serial_set')) }}

{{ Form::label('serial_crs','* 3. Curso:') }}
{{ Form::select('serial_crs', array('' => 'Seleccione'), '', array('class'=>'form-control', 'id'=>'serial_crs')) }} {{ Form::hidden('hdnCrs','',array('id'=>'hdnCrs')) }}

{{Form::close()}} {{HTML::script('js/student/studentIdentificationReport/studentIdentificationReport.js')}} @stop