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

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

{{-- Thank You & Acknowledgement --}}

Thank you for attending the {{ $tSession->name ?? 'Training Session' }}. We hope the session was informative and valuable to you.

{{-- Post-Test Introduction --}}

As part of our commitment to continuous learning, we request you to complete a brief post-training assessment. This will help us evaluate the effectiveness of the session and understand how well the key topics were grasped.

{{-- Duration --}}

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

{{-- CTA Button --}} {{-- @if(!empty($testLink)) --}} @component('mail::button', ['url' => '435345', 'color' => 'primary']) 📝 Take Post-Training Test @endcomponent {{-- @endif --}} {{-- Deadline --}} @if(!empty($testDeadline))

Please complete the test by {{ $testDeadline }}.

@endif {{-- Support --}}

If you have any questions or need assistance, feel free to contact us by replying 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