{!! Form::label('all_accounts', __( 'accounting::lang.account' ) . ':') !!}
{!! Form::select('account_filter', [$account->id => $account->name], $account->id,
['class' => 'form-control accounts-dropdown', 'style' => 'width:100%',
'id' => 'account_filter', 'data-default' => $account->id]); !!}
{!! Form::label('location_id', __('business.business_locations') . ':') !!}
{!! Form::select('location_id', $business_locations, null, [
'class' => 'form-control select2',
'style' => 'width:100%',
'placeholder' => __('lang_v1.all'),
]) !!}