@component('mail::layout') {{-- Header --}} @slot('header') @include('email.admin.includes.header') @endslot {{-- Body --}} {{-- Greeting --}} @if (!empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else @endif @endif
Dear {{ $user->first_name }} {{ $user->last_name }},
Your {{ $user->userType->title }} account for {{ $domain }} has been successfully created. We're excited to welcome you aboard!
To start using your account, please verify your email address by clicking the button below:
Verifying your email will grant you access to a suite of administrative tools and features designed to enhance your experience with {{ siteconfig('company_name') }}.
Should you encounter any difficulties during the verification process, please reach out to our support team at {{ getSupportEmail() }}. We're here to help.
Best regards,
The {{ siteconfig('company_name') }} Team
{{ $salutation }}
@endif {{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @include('email.admin.includes.footer') @endslot @endcomponent