@extends('frontend.cropa.layouts.master') @section('title', 'Pré-inscription confirmée - ' . ($event->title ?? 'CROPA')) @section('content')

Votre pré-inscription est enregistrée

Code de pré-inscription : {{ $participant->code_pre_registration }}

Vos informations

Nom
{{ $participant->user->firstname }} {{ $participant->user->name }}
Email
{{ $participant->user->email }}
Téléphone
{{ $participant->user->phone ?: '-' }}
Spécialité
{{ $participant->user->specialty ?: '-' }}
Gouvernorat
{{ $participant->user->gouvernorat ?: '-' }}
Mode de paiement
{{ $participant->paiement_mode ?: 'À préciser' }}
{{-- La demande libre saisie à l'étape 1 : rappelée ici pour que le participant vérifie ce qu'il a transmis. --}} @if ($participant->comment)
Demande supplémentaire
{{ $participant->comment }}
@endif

Votre sélection

@if (empty($lignes))
Vous n'avez encore rien sélectionné.
@else
@foreach ($lignes as $ligne)
{{-- Titre seul : l'horaire et la salle ont ete vus a l'etape du choix. Le badge porte le nombre de places quand il y a des accompagnants. --}} {{ $ligne['titre'] }}@if ($ligne['quantite'] > 1)×{{ $ligne['quantite'] }}@endif {{-- Colonne reservee aux tarifs : le mot « Inclus » a ete retire. --}} @if ($ligne['prix'] > 0) {{ (int) $ligne['prix'] }} TND @endif
@endforeach
Total {{ (int) $total }} TND
@include('frontend.cropa.partials.reglement')
@endif
@include('frontend.cropa.partials.contact')
@endsection