@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('localidad_id', $localidades, NULL , $attributes = array('class' => 'form-control', 'id'=>'localidad_id'))!!}
@if($errors->has('localidad')) {!! $errors->first('localidad') !!} @else {!! " " !!} @endif
{!! Form::select('periodo_origen', $periodos, NULL , $attributes = array('class' => 'form-control', 'id'=>'periodo_origen'))!!}
@if($errors->has('periodo origen')) {!! $errors->first('periodo origen') !!} @else {!! " " !!} @endif
{!! Form::select('periodo_destino', $periodos, NULL , $attributes = array('class' => 'form-control', 'id'=>'periodo_destino'))!!}
@if($errors->has('periodo destino')) {!! $errors->first('periodo destino') !!} @else {!! " " !!} @endif
@stop