Files
backend_vib360_laravel/resources/views/Mails/user_update_password.blade.php
Shailesh-1981 fa8d4c1925 forget password
2025-05-27 19:22:36 +05:30

27 lines
786 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Update Your Password</title>
</head>
<body>
<h1>Hello, {{ $mailData['name'] }}!</h1>
<p>We received a request to update the password for your account.</p>
<p>If you made this request, you can update your password using the link below:</p>
<p>
<a href=" http://vib360.betadelivery.com/forget-password/{{$mailData['user_id'] }}"
style="display: inline-block; padding: 10px 20px; color: #fff; background-color: #007bff; text-decoration: none; border-radius: 5px;">
Update Password
</a>
</p>
<p>If you did not request a password update, no action is needed. Your account is secure.</p>
<p>Thank you,<br>The Support Team</p>
</body>
</html>