@extends('adminlte::page') @section('content_header')

@lang('global.Dispatch :product Products', ['product' => $stock->covidProduct->name])

@endsection @section('content')
@csrf
@php $defaultUo = null; if(old('uo_id')) { $defaultUo = json_decode((new \App\Http\Resources\UoResource(\App\Models\Uo::find(old('uo_id'))))->toJson(), true); } @endphp
@error('uo_id') {{ $message }} @enderror
@error('dispatch_quantity') {{ $message }} @enderror
{!! Util::BT_CustomSwitchWithLabel(__('global.Send Notification Email'), true, 'send_notification_email') !!}
{!! Util::FormSubmitActions('dispatch', route('covid-products.stock.index')) !!}
@endsection