Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

reset_password.blade.php 744B

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