@extends('layout.sidebar')
@section('content')
{{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoption', array()), array('id'=>'sections')) }}
{{ Form::hidden('courses', action('CourseController@getLevelsschoolyear', array()), array('id'=>'courses')) }}
{{ Form::hidden('periods', action('PeriodController@getPeriodsbyyear', array()), array('id'=>'periods')) }}
{{ Form::hidden('subperiods', action('SubperiodController@getSubperiodsbyperiod', array()), array('id'=>'subperiods')) }}
Alertas Calificaciones Bajas
{{ Form::open(array('url' => 'email/email','id' => 'form_mail')) }}
{{ 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_prd','* 4. Periodos:') }}
{{ Form::select('serial_prd', array('' => 'Seleccione'), '', array('class'=>'form-control', 'id'=>'serial_prd')) }}
{{ Form::label('serial_sbp','* 5. Subperiodos:') }}
{{ Form::select('serial_sbp', array('' => 'Seleccione'), '', array('class'=>'form-control', 'id'=>'serial_sbp')) }}
{{ Form::submit('Enviar mail', array('class' => 'btn btn-success')) }}
{{ Form::close() }}
{{ HTML::script('js/email/index.js') }}
@stop()