@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
@can('brand.view')
{!! Form::open(['url' => action([\App\Http\Controllers\StockUpdationController::class, 'manualStockAdjustmentStore']), 'method' => 'post']) !!}
@csrf
{!! Form::label('location_id', __('sale.location') . ':*') !!}
{!! Form::select('location_id', $locations, null, [
'placeholder' => __('messages.please_select'),
'class' => 'form-control select2 location_id',
'required'
]) !!}
{!! Form::close() !!}
@endcan