@extends('layouts.app') @section('title', 'Commande - JOLI Matelas') @section('content')
@include('partials.page-hero', [ 'title' => 'Finaliser ma commande', 'breadcrumbs' => [ ['label' => 'Accueil', 'href' => route('home')], ['label' => 'Commande'] ] ])
@if(session('error'))
{{ session('error') }}
@endif
@csrf

Informations personnelles

@error('customer_first_name')

{{ $message }}

@enderror
@error('customer_last_name')

{{ $message }}

@enderror
@error('customer_phone')

{{ $message }}

@enderror
@error('customer_email')

{{ $message }}

@enderror

Adresse de livraison

@error('delivery_street')

{{ $message }}

@enderror
@error('delivery_city')

{{ $message }}

@enderror
@error('delivery_postal_code')

{{ $message }}

@enderror

Notes (optionnel)

Votre commande

@foreach($cart['items'] as $item)
@if($item['product']->thumbnail) @endif

{{ $item['product']->name }}

{{ $item['variant']->size }} × {{ $item['quantity'] }}

{{ number_format($item['subtotal'], 0, ',', ' ') }} {{ config('shop.currency_symbol') }}
@endforeach
Sous-total {{ number_format($cart['total_price'], 0, ',', ' ') }} {{ config('shop.currency_symbol') }}
Livraison Gratuite
Total {{ number_format($cart['total_price'], 0, ',', ' ') }} {{ config('shop.currency_symbol') }}
Paiement à la livraison

Vous payez en espèces à la réception de votre commande

En confirmant, vous acceptez nos conditions générales de vente

Retour au panier
@endsection