@extends('backend.layouts.master') @section('title') Pré-inscription @endsection @section('css') @endsection @section('body') @endsection @section('content')
@if ($participant->code)
Reprise inscription « {{ $participant->user?->firstname }} {{ $participant->user?->name }} »
@else
Modifier inscription {{ $participant->user->firstname }} {{ $participant->user->name }}
@endif
Retour {{-- Valider l'inscription --}}
Status
@if ($participant->code)
Inscrit
@else
Pré-inscrit
@endif
Code pré-inscription
{!! $participant->code_pre_registration ?? ' ' !!}
Code inscription
{!! $participant->code ?? ' ' !!}
Prénom
{!! $participant->user->firstname ?? ' ' !!}
Nom
{!! $participant->user->name ?? ' ' !!}
Email @if ($participant->user->is_mailbox_full == 1) boîte de réception pleine @elseif($participant->user->email_valid == 1) valide @elseif($participant->user->email_valid == 0) invalide @endif
@if ($participant->user->email_valid == 0) {{ $participant->user->email }} @elseif ($participant->user->is_mailbox_full == 1) {{ $participant->user->email }} @elseif ($participant->user->email_valid == 1) {{ $participant->user->email }} @endif
Téléphone
{!! $participant->user->phone ?? ' ' !!}
@if ($event->has_establishment)
Organisme
{!! $participant->user?->establishment ?? ' ' !!}
@endif @if ($event->has_fonction)
Fonction
{!! $participant->user?->fonction ?? ' ' !!}
@endif @if ($event->has_domain)
Domaine
{!! $participant->user?->domain ?? ' ' !!}
@endif @if ($event->has_specialty)
Spécialité
{!! $participant->user?->specialty ?? ' ' !!}
@endif @if ($event->has_mode)
Mode d'exercice
{!! $participant->user?->mode ?? ' ' !!}
@endif @if ($event->has_city)
Ville
{!! $participant->user?->city ?? ' ' !!}
@endif @if ($event->has_region)
Région
{!! $participant->user?->gouvernorat ?? ' ' !!}
@endif @if ($event->has_country)
Pays
{!! $participant->user?->country ?? ' ' !!}
@endif
@csrf @include('backend.manage.workshops')
@endsection @section('scripts') @endsection