@php $otp_digits = str_split($otp); @endphp OTP For Verification | {{config('app.name')}}
@include('email.email-partials.header')

OTP to login

Hello {{$user['first_name']}},

You have requested an OTP to login to your {{config('app.name')}} account. If this was you, please input the code below to continue.

Your OTP code for {{ $user->name }} {{ ' (' . $user->email . ') ' }} is
@foreach ($otp_digits as $digit)
{{ $digit }}
@endforeach

This OTP will expire in 10 minutes.

If you did not request a login, contact the support team.

Thanks,
{{config('app.name')}}

@include('email.email-partials.footer')