{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('expense_for', __('expense.expense_for').':') !!}
{!! Form::select('expense_for', $users, null, ['class' => 'form-control select2']); !!}
{!! Form::label('expense_category_id',__('expense.expense_category').':') !!}
{!! Form::select('expense_category_id', $categories, null, ['placeholder' =>
__('report.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'expense_category_id']); !!}
{!! Form::label('expense_date_range', __('report.date_range') . ':') !!}
{!! Form::text('date_range', @format_date('first day of this month') . ' ~ ' . @format_date('last day of this month') , ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'expense_date_range', 'readonly']); !!}