{!! Form::label('ref_no', __('purchase.ref_no').':') !!} @show_tooltip(__('manufacturing::lang.ref_no_tooltip'))
{!! Form::text('ref_no', null, ['class' => 'form-control']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':*') !!}
{!! Form::select('location_id',
$business_locations,
null,
['class' => 'form-control select2', 'required']
) !!}
{!! Form::label('variation_id', __('sale.product').':*') !!}
{!! Form::select('variation_id', $recipe_dropdown, null, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required', 'id' => 'variation_id']); !!}