@extends('frontend::layouts.master') @section('title') {{ $seo?->title }} @endsection @push('style') @endpush @section('content')
@csrf

{{ __('frontend::translate.Billing Details') }}

@error('billing_name')
{{ $message }}
@enderror
@error('billing_email')
{{ $message }}
@enderror
@error('billing_phone')
{{ $message }}
@enderror
@error('billing_address')
{{ $message }}
@enderror

{{ __('frontend::translate.Your Order') }}

@foreach ($carts as $cart) @endforeach
{{ __('frontend::translate.Product') }} {{ __('frontend::translate.Subtotal') }}
{{ Str::limit($cart->cartable?->title, 35) }} X {{ $cart->quantity }} {{ exchangeAmount($cart->cartable->getCurrentPrice() * $cart->quantity) }}
{{ __('frontend::translate.Subtotal') }} {{ exchangeAmount($sub_total) }}
{{ __('frontend::translate.Total') }} {{ exchangeAmount($sub_total) }}

{{ __('frontend::translate.Payment Methods') }}

@if ($paymentMethods->count() > 0)
@foreach ($paymentMethods as $method)
driver ? 'checked' : '' }} {{ $loop->first && !old('payment_method') ? 'checked' : '' }}>
@if ($method->image)
@endif
@endforeach
@error('payment_method')
{{ $message }}
@enderror @else
No payment methods are currently available. Please contact support.
@endif
@endsection @push('script') @endpush