12345678910111213141516 |
- <body>
- <div style="text-align:center;width:600px;margin:0 auto">
- <div style="margin-top:10px">
- <img src="https://i.postimg.cc/mrJjXmNg/logo.png" style="width: 30%;">
- </div>
- <p>You have requested a password reset. Please click the following button to reset your password:</p>
- <form action="{{ url('reset', $token) }}" method="GET">
- @csrf
- <button type="submit" style="background-color: #004ae1; color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer;">Reset Password</button>
- </form>
- <p>Thank you for using our services.</p>
- <p>If you did not request a password reset, please ignore this email.</p>
- </div>
- </body>
-
|