@extends('layouts.app') @section('breadcrumb') @stop @section('content')

{!! trans('messages.create') !!} {!! trans('messages.transaction').' '.trans('messages.report') !!}

{!! Form::open(['url'=>'/checklist-report/download','id'=>'download-transaction-form','data-submit'=>'noAjax']) !!}
{!! Form::label('locations',trans('messages.location'),[]) !!} {!! Form::select('locations[]',$locations,'',['class'=>'form-control show-tick','title'=>trans('messages.select').' '.trans('messages.location'),'multiple'=>'multiple','data-actions-box'=>'true']) !!}
{!! Form::label('category',trans('messages.category'),[])!!} {!! Form::select('category',App\Checklist::$category,'',['class' => 'form-control show-tick','title' => trans('messages.select_one')])!!}
{{trans('messages.to')}}

{!! Form::submit(trans('messages.download'),['id' => 'm-submit', 'class' => 'btn btn-success pull-right']) !!}
{!! Form::close() !!}
@stop