@extends('layouts.app') @section('title', 'Track Your Order') @section('styles') @endsection @section('content')

Track Your Order

Enter your order number and email address to view the status and details of your order.

@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
@error('order_number')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
💡 Your order number can be found in the confirmation email sent to you after purchase. The email address must match the one used when placing the order.
← Back to Home
@endsection