@extends('layouts.public') @section('title', 'Paiement - ' . $event->title) @section('content')

Finaliser votre inscription

Choisissez votre mode de paiement

Sécurisé par Paygate Togo

@if ($errors->any())

Erreurs de validation

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('error'))
{{ session('error') }}
@endif
@csrf
+228
@error('phone_number')

{{ $message }}

@enderror

Assurez-vous que ce numéro correspond à votre compte Mobile Money

Informations importantes

  • Vous recevrez un SMS de confirmation pour valider le paiement
  • Le délai de traitement est généralement de 1 à 5 minutes
  • Support: {{ $event->contact_phone ?? '+228 96 05 53 53 / 96 05 53 53' }}
  • Frais de transaction: 2.5%
Retour

Récapitulatif de votre commande

{{ $event->title }}

{{ $event->subtitle }}

{{ $event->start_date->format('d/m/Y à H:i') }}

@if ($event->location)

{{ $event->location }}

@endif

Détails du participant

Nom: {{ $registration->full_name }}

Email: {{ $registration->email }}

@if ($registration->phone)

Tél: {{ $registration->phone }}

@endif @if ($registration->company)

Société: {{ $registration->company }}

@endif

Détails de la commande

Type de billet: {{ $registration->ticketType->name }}
Quantité: {{ $registration->quantity }}
Prix unitaire: {{ number_format($registration->ticketType->price, 0, ',', ' ') }} FCFA
Total: {{ number_format($registration->total_amount, 0, ',', ' ') }} FCFA
Paiement sécurisé
@endsection