{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{{-- {!! Form::select(
'select_location_id',
$business_locations,
$default_location->id ?? null,
['class' => 'form-control select2', 'id' => 'select_location_id', 'required'],
$bl_attributes,
) !!} --}}
{!! Form::label('ref_no', __('purchase.ref_no') . ':') !!}
@show_tooltip(__('lang_v1.leave_empty_to_autogenerate'))
{!! Form::text('ref_no', null, ['class' => 'form-control']) !!}
{!! Form::label('re_order_status', __('re_order.status') . ':') !!}
{!! Form::select('re_order_status', $re_order_status, null, [
'class' => 'form-control select2',
'id' => 're_order_status',
]) !!}