{!! Form::label('filter_account_group', __('accounting-reports::lang.account_group') . ':') !!}
{!! Form::select('filter_account_group', [
'' => __('lang_v1.all'),
'assets_current' => 'Current Assets',
'assets_non_current' => 'Non-Current Assets',
'liabilities_current' => 'Current Liabilities',
'liabilities_non_current' => 'Non-Current Liabilities',
'equity' => 'Equity',
'income' => 'Income',
'cogs' => 'Cost of Goods Sold',
'expenses' => 'Expenses',
'other_income' => 'Other Income',
'other_expenses' => 'Other Expenses',
], null, ['class' => 'form-control select2', 'id' => 'filter_account_group']) !!}
{!! Form::label('filter_account_type', __('accounting-reports::lang.account_type') . ':') !!}
{!! Form::select('filter_account_type', [
'' => __('lang_v1.all'),
'asset' => 'Asset',
'liability' => 'Liability',
'equity' => 'Equity',
'income' => 'Income',
'expense' => 'Expense',
], null, ['class' => 'form-control select2', 'id' => 'filter_account_type']) !!}
{!! Form::label('filter_is_active', __('accounting-reports::lang.status') . ':') !!}
{!! Form::select('filter_is_active', [
'' => __('lang_v1.all'),
'1' => __('accounting-reports::lang.active'),
'0' => __('accounting-reports::lang.inactive'),
], null, ['class' => 'form-control select2', 'id' => 'filter_is_active']) !!}
{!! Form::label('search', __('lang_v1.search') . ':') !!}
{!! Form::text('search', null, ['class' => 'form-control', 'id' => 'search', 'placeholder' => __('lang_v1.search_placeholder')]) !!}