{{--
Order Verification Email - Atomic Design System v2.0
Sent when a user requests to verify ownership of orders
Note: $colors automatically injected via View Composer
--}}
@component('emails.layouts.base', [
'title' => 'Order Verification Code',
'previewText' => 'Your verification code: ' . $code,
'colors' => $colors
])
@component('emails.atoms.h1', ['colors' => $colors])
Order Verification Code
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
@if($hasOrders)
You requested to verify ownership of your orders. Use the verification code below to proceed:
@else
You requested a verification code. Use the code below to verify your email address:
@endif
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
{{-- Verification Code Card --}}
@component('emails.organisms.card', ['colors' => $colors])
|
Your Verification Code
{{ $code }}
|
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.organisms.alert-box', [
'variant' => 'info',
'title' => 'Important',
'colors' => $colors
])
Code Details:
|
|
This code expires in {{ $expiresInMinutes }} minutes
|
|
|
|
You have 3 attempts to enter the correct code
|
|
|
|
Do not share this code with anyone
|
|
@endcomponent
@if($hasOrders)
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.atoms.h3', ['colors' => $colors])
Once Verified, You'll Be Able To
@endcomponent
|
|
|
|
Link orders to your account
|
|
|
|
Access order details and tickets
|
|
@endif
@component('emails.organisms.alert-box', [
'variant' => 'warning',
'title' => 'Security Notice',
'colors' => $colors
])
If you didn't request this verification code, please ignore this email. Your account security is not at risk.
@endcomponent
@endcomponent