{!! Form::label('filter_account_id', __('accounting-reports::lang.bank_account') . ':') !!}
{!! Form::select('filter_account_id', $accounts, null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_account_id']) !!}
{!! Form::label('filter_type', __('accounting-reports::lang.cheque_type') . ':') !!}
{!! Form::select('filter_type', ['issued' => __('accounting-reports::lang.issued'), 'received' => __('accounting-reports::lang.received')], null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_type']) !!}
{!! Form::label('filter_status', __('accounting-reports::lang.cheque_status') . ':') !!}
{!! Form::select('filter_status', ['pending' => __('accounting-reports::lang.pending'), 'cleared' => __('accounting-reports::lang.cleared'), 'bounced' => __('accounting-reports::lang.bounced'), 'cancelled' => __('accounting-reports::lang.cancelled'), 'deposited' => __('accounting-reports::lang.deposited')], null, ['class' => 'form-control select2', 'placeholder' => __('lang_v1.all'), 'id' => 'filter_status']) !!}
{!! Form::label('filter_start_date', __('report.start_date') . ':') !!}
{!! Form::text('filter_start_date', null, ['class' => 'form-control date-picker', 'readonly', 'id' => 'filter_start_date']) !!}
{!! Form::label('filter_end_date', __('report.end_date') . ':') !!}
{!! Form::text('filter_end_date', null, ['class' => 'form-control date-picker', 'readonly', 'id' => 'filter_end_date']) !!}