@extends('layouts.master') @section('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' => 'estudiantes/generarconstancia','target' => '_blank'))!!}{!! csrf_field() !!}
{!! Form::text('estudiante_id', NULL , $attributes = array('class' => 'form-control mayuscula','id'=>'estudiante_id','placeholder'=>'12345678'))!!}
{!! Form::text('nom_ape', NULL , $attributes = array('class' => 'form-control data mayuscula','id'=>'nom_ape', 'readOnly' => 'readOnly'))!!}
{!! Form::select('programa_id',$vacio, NULL , $attributes = array('class' => 'form-control', 'id'=>'programa_id','required' => 'required'))!!}
{!! Form::text('indice', NULL , $attributes = array('class' => 'form-control', 'id'=>'indice','readOnly' => 'readOnly'))!!}
{!! Form::text('uc', NULL , $attributes = array('class' => 'form-control', 'id'=>'uc','readOnly' => 'readOnly'))!!}
{!! 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::select('periodo_id', $periodos, NULL , $attributes = array('class' => 'form-control', 'id'=>'periodo_id'))!!}
@if($errors->has('periodos')) {!! $errors->first('periodos') !!} @else {!! " " !!} @endif
{!! Form::select('confirma', $confirma, NULL , $attributes = array('class' => 'form-control', 'id'=>'confirma','required' => 'required'))!!}
@if($errors->has('firma digital')) {!! $errors->first('firma digital') !!} @else {!! " " !!} @endif
{!! Form::select('firma1',$autoridades, NULL , $attributes = array('class' => 'form-control mayuscula', 'id'=>'firma1'))!!}
@if($errors->has('firma autorizada #1')) {!! $errors->first('firma autorizada #1') !!} @else {!! " " !!} @endif
{!!Form::submit('Generar',array('class'=>'btn btn-success'))!!}
{!!Form::close()!!}
@stop @section('postscript') @stop