@component('mail::message') {{-- Header with Logo --}}
Logo
{{-- Greeting --}}

Dear {{ $client->firstname ?? '' }} {{ $client->lastname ?? '' }},

{{-- Introduction --}}

We hope you're doing well! We're excited to have you join the upcoming training session:

{{ $tSession->name ?? 'Training Session' }}

{{-- Purpose --}}

To help us tailor the session to your needs, we ask you to complete a short pre-training assessment. This will give us insight into your current understanding and help ensure the best learning experience.

{{-- Duration --}}

Estimated time to complete: {{ $testDuration ?? '10-15 minutes' }}.

{{-- CTA Button --}} {{-- @if(!empty($testLink)) --}} @component('mail::button', ['url' => 'test', 'color' => 'success']) 📝 Start Pre-Training Test @endcomponent {{-- @endif --}} {{-- Deadline --}}

Please make sure to complete the test by {{ $testDeadline ?? 'the scheduled deadline' }}.

{{-- Contact Info --}}

If you have any questions or issues accessing the test, feel free to reply to this email.

{{-- Signature --}}

Best regards,
{{ auth()->user()->first_name ?? 'Training Team' }} {{ auth()->user()->last_name ?? '' }}
{{ auth()->user()->email ?? '' }}

{{-- Footer --}}

© {{ date('Y') }} {{ config('app.name') }}. All rights reserved.

@endcomponent