@extends('layouts.master') @section('css') {!! Html::style('css/datepicker.css')!!} @stop @section('content') @if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif @if(Session::has('message_success'))
{!! Session::get('message_success') !!}
@endif {!!Form::open(array('url' => 'grado/servicios','target' => '_blank'))!!}{!! csrf_field() !!}
{!!Form::select('promocion',$promociones,NULL,array('id' => 'promocion','class' => 'form-control'))!!}
@if($errors->has('promocion')) {!! $errors->first('promocion') !!} @else {!! " " !!} @endif
{!!Form::select('programa',$programas,NULL,array('id' => 'programa','class' => 'form-control'))!!}
@if($errors->has('programa')) {!! $errors->first('programa') !!} @else {!! " " !!} @endif
{!! Form::select('constancia_id', $constancias, NULL , $attributes = array('class' => 'form-control', 'id'=>'constancia_id','required' => 'required'))!!}
@if($errors->has('constancia')) {!! $errors->first('constancia') !!} @else {!! " " !!} @endif
{!! Form::text('estudiante_id', NULL , $attributes = array('class' => 'form-control mayuscula', 'id'=>'estudiante_id'))!!}
@if($errors->has('id')) {!! $errors->first('id') !!} @else {!! " " !!} @endif
{!! Form::select('firma_aut1',$autoridades, NULL , $attributes = array('class' => 'form-control mayuscula', 'id'=>'firma_aut1','disabled' => 'disabled'))!!}
@if($errors->has('firma autorizada #1')) {!! $errors->first('firma autorizada #1') !!} @else {!! " " !!} @endif
{!! Form::select('firma_aut2',$autoridades, NULL , $attributes = array('class' => 'form-control mayuscula', 'id'=>'firma_aut2' ,'disabled' => 'disabled'))!!}
@if($errors->has('firma autorizada #2')) {!! $errors->first('firma autorizada #2') !!} @else {!! " " !!} @endif
{!!Form::submit('Generar',array('class'=>'btn btn-success'))!!}
{!!Form::close()!!} @stop @section('postscript') {!! Html::script('js/datepicker/bootstrap-datepicker.js') !!} {!! Html::script('js/datepicker/locales/bootstrap-datepicker.es.js') !!} {!! Html::script('js/solonumeros.js') !!} @stop