18 lines
460 B
PHP
18 lines
460 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Reset Password</title>
|
|
</head>
|
|
|
|
<body>
|
|
<p>Hello,</p>
|
|
<p>You have requested to reset your password. Click the link below to reset it:</p>
|
|
<p><a href="{{ url('reset-password/' . $token) }}">Reset Password</a></p>
|
|
<p>If you did not request this, please ignore this email.</p>
|
|
</body>
|
|
|
|
</html>
|