@extends('layouts.master') @section('css') {!! Html::style('css/jquery_ui.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
{!! csrf_field() !!}
{!! Form::select('periodo_id', $elementos, NULL, $attributes = array('class' => 'form-control', 'id'=>'periodo_id')) !!}
{!! Form::select('localidad_id', $localidades, NULL, $attributes = array('class' => 'form-control', 'id'=>'localidad_id')) !!}
{!! Form::submit('Generar', array('class' => 'btn btn-success')) !!}
@stop @section('postscript') @stop