@extends("front/layout.master") @section('title', __('Order Placed Successfully | ')) @section('body') @php $orderId = app('request')->input('orderid') ?? ''; @endphp
{{-- Top gradient banner with the success badge --}}

{{ __('staticwords.Thankyou') }}!

{{ __('Your order has been placed successfully and is being processed.') }}

{{-- Order ID card --}} @if($orderId)
{{ __('Order ID') }}
#{{ $orderId }}
@endif {{-- Status pills --}}
{{ __('Confirmed') }}
{{ __('Shipping') }}
{{ __('Delivered') }}
{{-- Action buttons --}} {{-- Help footer --}}

{{ __('A confirmation email has been sent to your registered address.') }}

{{ __('Need help?') }} {{ __('Contact support') }}

@endsection