@extends('layout.admission.default') @section('defaultcontent') {{ Form::hidden('rtuInfo', action('ApplicantController@getInfo', array()), array('id'=>'rtuInfo')) }} {{ Form::hidden('rtuCounties', action('ApplicantController@getCounties', array()), array('id'=>'rtuCounties')) }} {{ Form::hidden('rtuParishes', action('ApplicantController@getParishes', array()), array('id'=>'rtuParishes')) }} {{ Form::hidden('rtuLevels', action('ApplicantController@getLevels', array()), array('id'=>'rtuLevels')) }}
@include('applicant.partials.header')
@if($enableForm == true)

FORMULARIO DE APLICACIÓN (Un formulario por aplicante)

{{ Form::open(array('url' =>action('ApplicantController@postSave'), 'method' => 'POST', 'id' => 'formApliccant')) }}
@if(count($schoolYears) > 2) {{Form::select('serial_scy',$schoolYears,$lastSchoolYears,array('id'=>'serial_scy','class'=>'form-control col-md-6'))}} @else {{ Form::hidden('serial_scy',$schoolYearForm->serial_scy,array('id' => 'serial_scy')) }} @endif
@include('applicant.partials.footer')
@else

El formulario por el momento no está disponible.

@endif
{{ Form::close() }} {{ HTML::style('css/applicant/index.css') }} {{ HTML::script('js/applicant/index.js') }} @stop()