Files
backend/backend/resources/views/emails/login-notification.blade.php

25 lines
370 B
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Login Notification</title>
</head>
<body>
<h2>Hello {{ $user->username }}</h2>
<p>You have successfully logged in to your account.</p>
<p>
Email: {{ $user->email }}
</p>
<p>
If this login was not done by you, please contact support immediately.
</p>
<br>
<p>Thank you.</p>
</body>
</html>