@extends('layouts.app') @section('title', 'Edit Price Record') @section('content')

Edit Price Record

Update supplier price information

@csrf @method('PUT')

Supplier Information

@error('supplier_id')

{{ $message }}

@enderror
@error('quoted_at')

{{ $message }}

@enderror

Item Details

@error('item_type')

{{ $message }}

@enderror
@error('item_description')

{{ $message }}

@enderror

Quantity & Dimensions

@error('quantity')

{{ $message }}

@enderror
@error('uom')

{{ $message }}

@enderror
@error('width')

{{ $message }}

@enderror
@error('height')

{{ $message }}

@enderror
@error('dimension_unit')

{{ $message }}

@enderror

Pricing

RM
@error('unit_price')

{{ $message }}

@enderror
postage_option) == 'included' ? 'checked' : '' }} class="h-4 w-4 text-teal-600 focus:ring-teal-500 border-gray-300">
postage_option) == 'add_on' ? 'checked' : '' }} class="h-4 w-4 text-teal-600 focus:ring-teal-500 border-gray-300">
RM
postage_option) != 'add_on' ? 'disabled' : '' }}>
postage_option) == 'self_pickup' ? 'checked' : '' }} class="h-4 w-4 text-teal-600 focus:ring-teal-500 border-gray-300"> postage_option) != 'self_pickup' ? 'disabled' : '' }}>
@error('postage_option')

{{ $message }}

@enderror @error('postage_price')

{{ $message }}

@enderror @error('self_pickup_location')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
Created: {{ $priceRecord->created_at->format('M d, Y') }} @if($priceRecord->created_at != $priceRecord->updated_at) | Last Updated: {{ $priceRecord->updated_at->format('M d, Y') }} @endif
Cancel

Danger Zone

Delete this price record

Once deleted, this price record will be permanently removed from the system.

@csrf @method('DELETE')
@endsection