@component('mail::layout') {{-- Header --}} @slot('header') @include('email.admin.includes.header') @endslot {{-- Body --}} @if (! empty($greeting)) # {{ $greeting }} @elseif ($level === 'error') # @lang('Whoops!') @endif

Dear {{ $user->first_name }} {{ $user->last_name }},

We’re excited to have you join Clearly Legal. To continue setting up your account and proceed with your payment, please use the One-Time Password (OTP) below:

@component('mail::panel') {{ $otp }} @endcomponent

This OTP is valid for a limited time. Please do not share it with anyone.

If you did not request this, please disregard this message or contact our support team.

Thank you,
The Clearly Legal Team

{{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @if (! empty($salutation)) {{ $salutation }} @else @include('email.admin.includes.footer') @endif @endslot @endcomponent