Add Product
@csrf
@error('duplicated')
{{ $message }}
@enderror
@if($errors->has('product_id'))
{{ $errors->first('product_id') }}
@endif
@if($errors->has('item_code'))
{{ $errors->first('item_code') }}
@endif
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if($errors->has('ordered_qty'))
{{ $errors->first('ordered_qty') }}
@endif