@extends('layout.sidebar')
@section('content')
{{ Form::hidden('subjects', action('PeriodExamManageController@postSubjects', array()), array('id'=>'subjects')) }}
{{ Form::hidden('levels', action('LevelController@getSectionLevels', array()), array('id'=>'levels')) }}
{{ Form::hidden('save', action('PeriodExamManageController@postSave', array()), array('id'=>'save')) }}
{{ Form::open(array('class'=>'form-signin','id'=>'data')) }}
CONFIGURACIÓN DE EXAMEN POR MATERIA
{{ Form::label('','(*)CAMPOS OBLIGATORIOS') }}
{{ Form::label('serial_scy','* 1. Año Lectivo:') }}
{{ Form::select('serial_scy',$schoolYears,$currentScy->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::close() }}
{{ HTML::script('js/periodExamManage/index.js') }}
@stop()