{!! Form::label('location_id', __('business.business_locations') ) !!}
{!! Form::select('location_id', $business_locations, request()->location_id, [
'class' => 'form-control select2',
'style' => 'width:100%',
'placeholder' => __('lang_v1.all'),
]) !!}
{!! Form::label('account_id', __( 'accounting::lang.account' ) ) !!}
{!! Form::select('account_id', $all_accounts, request()->account_id,[
'class' => 'form-control select2',
'placeholder' => __('lang_v1.all'),
]); !!}
{!! Form::label('page_number', __('invoice.preview') ) !!}
{!! Form::select('page_number', [1 => "1",3 => "3",5 => "5",10 => "10",25 => "25",50 => "50",100 => "100",1000 => "1000"], request()->page_number, [
'class' => 'form-control select2',
'placeholder' => __('lang_v1.all'),
]) !!}
@endcomponent
@component('components.widget', ['class' => 'box-solid'])
@can('accounting.add_journal')