@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
{!! csrf_field() !!}
{!! Form::select('nivel_id', $niveles, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'nivel_id')) !!}
{!! Form::select('programa_id', $programas, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'programa_id')) !!}
{!! Form::select('periodo_id', $periodos, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'periodo_id')) !!}
{!! Form::select('ins', $periodos, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'ins')) !!}
{!! Form::select('convenio_id', $convenios, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'convenio_id')) !!}
{!! Form::select('localidad_id', $localidades, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'localidad_id')) !!}
{!! Form::select('localidad_academica_id', $localidades_academicas, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'localidad_academica_id')) !!}
{!! Form::select('ubicacion', $ubicacion, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'ubicacion')) !!}
{!! Form::select('indice', $sixno, 'NULL', $attributes = array('class' => 'form-control', 'id'=>'indice')) !!}
{!! Form::submit('Generar', array('class' => 'btn btn-success')) !!}
@stop @section('postscript') @stop