{!! Form::label('filter_from_date', __('accounting-reports::lang.from_date') . ':') !!}
{!! Form::text('filter_from_date', null, ['class' => 'form-control date-picker', 'id' => 'filter_from_date', 'readonly']) !!}
{!! Form::label('filter_to_date', __('accounting-reports::lang.to_date') . ':') !!}
{!! Form::text('filter_to_date', null, ['class' => 'form-control date-picker', 'id' => 'filter_to_date', 'readonly']) !!}
{!! Form::label('filter_location_id', __('accounting-reports::lang.location') . ':') !!}
{!! Form::select('filter_location_id', $locations, null, ['class' => 'form-control select2', 'id' => 'filter_location_id', 'placeholder' => __('lang_v1.all'), 'style' => 'width:100%']) !!}
{!! Form::label('filter_source_module', __('accounting-reports::lang.source_module') . ':') !!}
{!! Form::select('filter_source_module', [
'' => __('lang_v1.all'),
'manual' => 'Manual',
'sale' => 'Sale',
'purchase' => 'Purchase',
'expense' => 'Expense',
'payment' => 'Payment',
'receipt' => 'Receipt',
], null, ['class' => 'form-control select2', 'id' => 'filter_source_module', 'style' => 'width:100%']) !!}