{{--
Password Changed Email - Atomic Design System v2.0
Sent when a user successfully changes their password
Note: $colors automatically injected via View Composer
--}}
@component('emails.layouts.base', [
'title' => 'Password Changed Successfully',
'previewText' => 'Your password has been updated',
'colors' => $colors
])
@component('emails.atoms.h1', ['colors' => $colors])
Password Changed Successfully
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
@if($userName)
Hello {{ $userName }},
@else
Hello,
@endif
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
This email confirms that your password has been changed successfully.
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.organisms.alert-box', [
'variant' => 'info',
'title' => 'Change Details',
'colors' => $colors
])
Date & Time: {{ $changedAt }}
@if($ipAddress)
IP Address: {{ $ipAddress }}
@endif
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
You can now use your new password to log in to your account.
@endcomponent
@include('emails.atoms.spacer', ['height' => '20px'])
@component('emails.organisms.alert-box', [
'variant' => 'error',
'title' => 'Didn\'t make this change?',
'colors' => $colors
])
If you did not change your password, please contact our support team immediately. Your account security may be at risk.
@endcomponent
@component('emails.atoms.h3', ['colors' => $colors])
Security Recommendations
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
For your security, we recommend:
@endcomponent
|
|
Using a strong, unique password
|
|
|
|
Not sharing your password with anyone
|
|
|
|
Changing your password regularly
|
|
|
|
Enabling two-factor authentication if available
|
|
@endcomponent