@extends('layout.app') @section('body')
Inscription Été 2026

Confirmation
d'inscription

Votre inscription a bien été prise en compte. Retrouvez ci-dessous le résumé des informations transmises.

Confirmation

Votre inscription est enregistrée

Retour à l'accueil

Informations de l'enfant

Nom
{{ $child['name'] }} {{ $child['firstname'] }}
Sexe
{{ ucfirst($child['sex']) }}
Classe
{{ $child['class'] }}
Date de naissance
{{ \Carbon\Carbon::parse($child['birthday'])->format('d/m/Y') }}
Lieu de naissance
{{ $child['birth_city'] }}
N° allocataire CAF
{{ $child['beneficiary_number_caf'] }}
Coefficient CAF
{{ $child['coefficient_caf'] ?: 'Aucun' }}
Personne(s) autorisée(s) à reprendre l'enfant
{{ $child['allow_take'] ?: 'Aucune' }}
Autorisation activités
{{ $child['authorized_take_activities'] ? 'Oui' : 'Non' }}
Autorisation transport
{{ $child['authorized_transport'] ? 'Oui' : 'Non' }}
Autorisation photos
{{ $child['authorized_photo'] ? 'Oui' : 'Non' }}
Autorisation soins
{{ $child['authorized_heal'] ? 'Oui' : 'Non' }}

Responsables légaux

Responsable 1

{{ $guardian1['status'] }} : {{ $guardian1['name'] }} {{ $guardian1['firstname'] }}

{{ $guardian1['email'] }}

{{ $guardian1['phone'] }}

{{ $guardian1['address'] }}

@if($guardian2)

Responsable 2

{{ $guardian2['status'] }} : {{ $guardian2['name'] }} {{ $guardian2['firstname'] }}

{{ $guardian2['email'] }}

{{ $guardian2['phone'] }}

{{ $guardian2['address'] }}

@endif

Santé et informations supplémentaires

Sait nager

{{ $health['swim'] ? 'Oui' : 'Non' }}

Peut repartir seul

{{ $health['leave_alone'] ? 'Oui' : 'Non' }}

Allergies

{{ $health['allergy'] ?: 'Aucune' }}

Dossier médical

{{ $health['medical'] ?: 'Aucun' }}

Traitement

{{ $health['treatment'] ?: 'Aucun' }}

Régime alimentaire

{{ $health['food_constraint'] ?: 'Aucun' }}

Notes

{{ $health['observation'] ?: 'Aucune' }}

Activités sélectionnées

@if(count($selectedActivities) > 0)
@foreach($selectedActivities as $activity)

{{ $activity['name'] }}

{{ $activity['dates'] }}

@if(count($activity['options']) > 0)
@foreach($activity['options'] as $option) {{ $option }} @endforeach
@else

Aucune option sélectionnée.

@endif
@endforeach
@else

Aucune activité n'a été sélectionnée.

@endif
@endsection