Update password reset email

This commit is contained in:
2024-08-03 10:47:08 +10:00
parent 0469d64577
commit df3f7e31be
3 changed files with 9 additions and 6 deletions

View File

@@ -0,0 +1,21 @@
@component('mail::message',['site'=>$site,'heading'=>'Password Reset'])
Hi {{ isset($user) ? $user->name_full.',' : '' }}
You are receiving this email because we received a password reset request for your account. If you did not request a password reset, no further action is required.
To reset your password, please follow this link, or click on the URL below:
@component('mail::button',['url'=>$reset_link])
Reset Password
@endcomponent
@component('mail::subcontent')
If the button above doesnt work, you can copy and paste this link into your browser, and take it from there:
```
{{ $reset_link }}
```
@endcomponent
Thanks,<br>
{{ config('mail.from.name') }}
@endcomponent