@extends('layouts.app') @section('title', __('checkout.title')) @section('content')

{{ __('checkout.title') }}

@if ($errors->any())
@endif
@csrf
{{-- ------------------------------------------------- contact --}}
{{ __('checkout.contact') }}
{{-- --------------------------------------------- fulfilment --}}
{{ __('checkout.fulfilment') }}
@foreach (['delivery', 'pickup'] as $mode) @endforeach
{{-- ------------------------------------------------- address --}}
{{ __('checkout.address') }}
{{-- Zone pickers rather than free text: the delivery fee is derived from the selection, and the data is reportable. The area list is filtered client-side by governorate; the server re-checks that the pair actually matches. --}} {{-- Kuwaiti addressing: block, street, house — in that order. --}}
{{-- ------------------------------------------------- payment --}}
{{ __('checkout.payment') }}
@foreach (config('shop.payment_methods') as $method) @endforeach
{{-- ------------------------------------------------------ summary --}}
@endsection