20 lines
594 B
PHP
20 lines
594 B
PHP
@extends('emails.layout')
|
|
|
|
@section('content')
|
|
<div class="title">Reset Password</div>
|
|
|
|
<div class="text">
|
|
Hello {{ $user->name }},<br><br>
|
|
You are receiving this email because we received a password reset request for your account.
|
|
</div>
|
|
|
|
<div style="text-align: center;">
|
|
<a href="{{ $url }}" class="btn">Reset Password</a>
|
|
</div>
|
|
|
|
<div class="text" style="margin-top: 30px;">
|
|
This password reset link will expire in 60 minutes.<br>
|
|
If you did not request a password reset, no further action is required.
|
|
</div>
|
|
@endsection
|