@extends('layout.sidebar') @section('content') {{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoptions', array()), array('id'=>'sections')) }} {{ Form::hidden('courses', action('CourseController@getAllbysectionoptions', array()), array('id'=>'courses')) }} {{ Form::hidden('students', action('RecordStudentReportController@getStudents', array()), array('id'=>'students')) }} {{ Form::hidden('searchStudentUrl', action('RecordStudentReportController@postSearchStudents', array()), array('id'=>'searchStudentUrl')) }} @if($method) {{ Form::hidden('pdfRecordStudent', action($method->controller_rcd . '@' . $method->method_rcd, array()), array('id'=>'pdfRecordStudent')) }} {{ Form::open(array('url' => action($method->controller_rcd . '@' . $method->method_rcd), 'class' => 'form-signin', 'method' => 'POST','id'=>'data')) }} {{ Form::token() }}

FICHA DE ESTUDIANTE


{{ Form::select('serial_scy',$schoolYears,$currentSchoolYear->serial_scy,array('id'=>'serial_scy','class'=>'form-control')) }}
{{Form::select('serial_set',array(''=>'-Seleccione-'),'',array('id'=>'serial_set','class'=>'form-control col-md-6', 'required'))}}
{{Form::select('serial_crs',array(''=>'-Seleccione-'),'',array('id'=>'serial_crs','class'=>'form-control col-md-6', 'required'))}}




{{ Form::text('searchStudent', '', array('class' => 'form-control text-center col-md-6', 'placeholder' => 'Buscar estudiante por nombre', 'autocomplete' => 'off', 'id' => 'searchStudent')) }}
{{ Form::hidden('hdnSerialStd',null , array('id'=>'hdnSerialStd')) }}
{{Form::close()}} {{ HTML::style('css/common/eyelash.css') }} {{ HTML::script('js/recordStudentReport/index.js') }} @else
No se ha configurado ninguna ficha
@endif @stop