{{-- @php use App\Models\Event; use App\Models\User; use App\Models\Participant; $event = Event::find(1); $paimentModes = $event->paiements()->where('visible_fe', 1)->pluck('name', 'key'); $user = User::find(Auth::user()->id); $participant = Participant::where('user_id', $user->id)->first(); @endphp @extends('frontend.mediknode.layout.mainlayout') @section('content')

Inscription

 FPI Tunis 2025

Choix mode de paiement
Code pré-inscription : {{ $participant->code_pre_registration }}
{{ $participant->user->civility }} {{ $participant->user->firstname }} {{ $participant->user->name }}
Email : {{ $participant->user->email }}
Téléphone : {{ $participant->user->phone }}
Ville : {{ $participant->user->city }}
Pays : {{ $participant->user->country }}
Domaine d'activité : {{ $participant->user->domain }}
@if ($participant->user->specialty)
Spécialité : {{ $participant->user->specialty }}
@endif @if ($participant->user->mode)
Mode d'exercice : {{ $participant->user->mode }}
@endif @if ($participant->user->cnopt_number)
Numéro d'inscription au CNOPT : {{ $participant->user->cnopt_number }}
@endif @if ($participant->user->student_id)
Identifiant étudiant : {{ $participant->user->student_id }}
@endif
@csrf
Frais inscription : {{ $participant->total_price }} TND
Mode de paiement : @foreach ($paimentModes as $key => $paimentMode)
paiement_mode) && $participant->paiement_mode == $paimentMode ? '' : '') }} value="{{ $paimentMode }}" class="form-check-input paiement-mode" type="radio" name="paiement_mode" id="paiement-mode-{{ $key }}" required> @if ($loop->last)
Choisir votre mode de paiement
@endif
@endforeach

Coordonnées bancaire :

Compte : Conseil National de l'Ordre des Pharmaciens en Tunisie (CNOPT)

Banque : UIB

RIB : 12 030 00 00093007655 64

IBAN : TN59 12 030 00 00093007655 64

SWIFT / BIC : UIBKTNTT

@endsection @section('scripts') @endsection --}}

paiement