@extends('layout.padrao') @section('title', 'Shipment Instruction') @section('content') @include('include.filtro_result') @if($errors->any())
@foreach($errors->all() as $error) {{ $error }}
@endforeach
@endif {{ Form::open(array('method' => 'GET', 'files'=>true, 'enctype'=>'multipart/form-data', 'route'=>'exportShipmentInstruction')) }} {{ csrf_field() }}

Dates Parameters

{!! Form::label('startDate', 'From ', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('startDate', old('startDate'),['class' => 'form-control ', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!} *Fields Date Mandatory
{!! Form::label('finishtDate', 'To', [ 'class' => 'w-100 control-label']) !!} {!! Form::date('finishtDate', old('finishtDate'),['class' => 'form-control', 'min' => '2019-01-01', 'max' => '2080-01-01']) !!}
@include('reports.script') @endsection