@extends('layouts.frontend') @section('title', 'Order Confirmation') @section('content')

Thank You for Your Order!

Your order has been placed successfully.

Order Number: {{ $order->order_number }}

We've sent a confirmation email to your registered email address.

Order Summary
@foreach($order->items as $item) @endforeach
{{ $item->product->name }} x{{ $item->quantity }} ${{ number_format($item->subtotal, 2) }}
Total: ${{ number_format($order->total_amount, 2) }}
Shipping Address

{{ $order->shipping_address }}

Payment Instructions
@if(!$order->payment_receipt_path)
@csrf
@error('payment_method')
{{ $message }}
@enderror

Accepted: JPG, PNG, PDF (Max: 5MB) @error('receipt')
{{ $message }}
@enderror
@else @endif
@endsection