{!! Form::label('from_date', 'From Order Date') !!}
{!! Form::date('from_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'from_date']) !!}
{!! Form::label('to_date', 'To Order Date') !!}
{!! Form::date('to_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'to_date']) !!}
{{--
{!! Form::label('from_order', 'From Order') !!}
{!! Form::number('from_order', null, ['class' => 'form-control text', 'id' => 'from_order']) !!}
{!! Form::label('to_order', 'To Order') !!}
{!! Form::number('to_order', null, ['class' => 'form-control text', 'id' => 'to_order']) !!}
--}}
{!! Form::label('Customer Phone Number') !!}
{!! Form::text('customer_contact', null, ['class' => 'form-control text', 'placeholder' => 'Enter Customer Phone Number', 'id' => 'customer_contact']) !!}
{!! Form::label('Customer type') !!}
{!! Form::select('customer_type', ['new'=>'New','old'=>'Old'], null, ['class' => 'form-control select-data', 'placeholder' => 'Customer type', 'id' => 'customer_type']) !!}
{{--
{!! Form::label('Multiple') !!}
--}}
{!! Form::label('from_reg_date', 'From Registration Date') !!}
{!! Form::date('from_reg_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'from_reg_date']) !!}
{!! Form::label('to_reg_date', 'To Registration Date') !!}
{!! Form::date('to_reg_date', \Carbon\Carbon::now(), ['class' => 'form-control date', 'id' => 'to_reg_date']) !!}
{!! Form::button('Clear',['class' => 'btn btn-danger btn-order-delivery-advanced-reset', 'id' => 'btn-order-delivery-advanced-reset']) !!}
{!! Form::label('entry_date_from', 'Entry Date (From)') !!}
{!! Form::date('entry_date_from', \Carbon\Carbon::now(), ['class' => 'form-control advanced_date', 'id' => 'entry_date_from']) !!}
{!! Form::label('entry_date_to', '(To)') !!}
{!! Form::date('entry_date_to', \Carbon\Carbon::now(), ['class' => 'form-control advanced_date', 'id' => 'entry_date_to']) !!}
{!! Form::label('1.Customer Area') !!}
{!! Form::select('customer_area', $customerArea, null, ['class' => 'form-control select-data advanced-select-data', 'placeholder' => 'Select customer area', 'id' => 'customer_area']) !!}
{!! Form::label('2.Customer Zone') !!}
{!! Form::select('customer_zone', $zones, null, ['class' => 'form-control select-data advanced-select-data', 'placeholder' => 'Select customer zone', 'id' => 'customer_zone']) !!}
{!! Form::button('Search',['class' => 'btn btn-primary btn-order-delivery-search', 'id' => 'btn-order-delivery-search']) !!}
{!! Form::button('Clear',['class' => 'btn btn-danger btn-order-delivery-reset', 'id' => 'btn-order-delivery-reset']) !!}
{!! Form::button('Excel',['class' => 'btn btn-info btn-order-delivery-excel', 'id' => 'btn-order-delivery-excel']) !!}