@extends('layouts.app') @section('content')

Edit Request

Note: You are editing a request that was rejected for resubmission. After updating the details, the request will be reset to pending status and sent back for approval.
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@if($request->attachments && is_array($request->attachments) && count($request->attachments) > 0)
Current attachments:
    @foreach($request->attachments as $attachment)
  • {{ $attachment['original'] ?? 'Attachment' }}
  • @endforeach
@endif You can upload up to 10 files (total max 50MB). New uploads will replace existing attachments.
The available users depend on your selected Purchase Request Type and follow workflow restrictions.
Payment Information

Itemized List

ITEM NAME
QTY
UNIT COST (RM)
TAX %
DELIVERY (RM)
TOTAL
FILE
ACTION
@if($request->items && is_array($request->items) && count($request->items) > 0) @foreach($request->items as $index => $item)
%
RM
@if(isset($item['attachment'])) File exists
@endif
@endforeach @else
%
RM
@endif
Cost Breakdown
RM
RM
RM
RM
Tax & Delivery Guide
Tax Information
• Default: 6% (Malaysian SST)
• Adjustable per item
• Applied to: Qty × Unit Cost
Delivery Charges
• Optional field in MYR
• For shipping/handling costs
• Added to final total
Formula:
Total = (Qty × Unit Cost) + Tax + Delivery
Cancel
@endsection