@extends('layouts.app') @section('title', __('trainings.register_page_title', ['training' => $training->title])) @section('meta_description', Str::limit(strip_tags($training->accroche_first ?? $training->title), 155)) @php $registerHeroImage = $training->image ? asset('storage/' . $training->image) : asset('assets/images/others/contact-me.jpg'); @endphp @section('content') {{-- Breadcrumb (aligné sur edublink/contact-me.html) --}}
{{-- Formulaires en premier (puis visuel / infos), comme demandé --}}
@php $registerBannerErrors = collect($errors->getMessages()) ->except(['login']) ->flatten() ->all(); @endphp @if(count($registerBannerErrors) > 0) @endif @if(request('session') && !$selectedSession && $registerableSessions->count() > 1) @endif @if(session('error')) @endif @if(session('warning')) @endif @guest @include('trainings.partials.register-account-gateway', [ 'training' => $training, 'registerVerifyEmail' => $registerVerifyEmail ?? null, 'registerVerifyToken' => $registerVerifyToken ?? null, ]) @else
@endguest
{{-- Zone visuel + infos (contact-me-area) --}}
{{ $training->title }}

{{ __('trainings.register_sidebar_intro') }}

{{ $training->title }}

    @if(config('sfer.address'))
  • {{ __('contact.address') }}

    {{ config('sfer.address') }}

  • @endif @if(config('sfer.email'))
  • {{ __('contact.email') }}

    {{ config('sfer.email') }}

  • @endif @if(config('sfer.phone'))
  • {{ __('contact.phone') }}

    {{ config('sfer.phone') }}

  • @endif
@endsection @push('scripts') @endpush