@component('components.widget', ['title' => $product->name])
{!! Form::label('product_id', __('sale.product') . ':') !!}
{!! Form::select('product_id', [$product->id=>$product->name . ' - ' . $product->sku], $product->id, ['class' => 'form-control', 'style' => 'width:100%']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, request()->input('location_id', null), ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
@if($product->type == 'variable')
@else
@endif
@endcomponent
@component('components.widget')
@endcomponent