@extends('emails.layouts.default-mail') @section('content')
| @include('emails.components.subject-box', [ 'title' => 'Your verification code', 'description' => 'Use this code to verify your identity and continue.', ]) |
|
Hello [full-name]! You requested a verification code for your {{ config('app.name') }} account associated with [email]. Enter the code below to continue. @include('emails.components.password-box', [ 'label' => 'Verification code', 'value' => '[otp]', ]) @component('emails.components.info-box') @slot('title') Code details @endslot Account: [email]Expires in: [expiry] Sent at: [current-date-time] @endcomponent @component('emails.components.notice-box') Didn't request this? You can safely ignore this email. If you're concerned about your account security, contact our support team. @endcomponent |