@extends('layouts.master') @section('css') @stop @section('content') @if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif
{!!Form::open(array('url' => 'estadisticas/generarmatricula','target' => '_blank'))!!}{!! csrf_field() !!}
{!! Form::select('tipo_reporte',$tipo_reporte, NULL, $attributes = array('class' => 'form-control','id'=>'tipo_reporte','required' => 'required'))!!}
@if($errors->has('tipo de reporte')) {!! $errors->first('tipo de reporte') !!} @else {!! " " !!} @endif
{!! Form::select('tip_programa',$tip_programa, NULL, $attributes = array('class' => 'form-control','id'=>'tip_programa','required' => 'required'))!!}
@if($errors->has('tipo de programa')) {!! $errors->first('tipo de programa') !!} @else {!! " " !!} @endif
{!! Form::select('cod_periodo',$lapso_mostrar, NULL,array('class' => 'form-control', 'id' => 'cod_periodo','required' => 'required')) !!}
@if($errors->has('período académico')) {!! $errors->first('período académico') !!} @else {!! " " !!} @endif
{!!Form::submit('Enviar',array('class' => 'btn btn-success'))!!}
{!!Form::close()!!}
@stop