14 lines
408 B
PHP
14 lines
408 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Your New Account Password</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, {{ $user->first_name }} {{ $user->last_name }}</h1>
|
|
<p>Your account has been created. Here are your login details:</p>
|
|
<p><strong>Email:</strong> {{ $user->email }}</p>
|
|
<p><strong>Password:</strong> {{ $password }}</p>
|
|
<p>Please change your password after logging in for the first time.</p>
|
|
</body>
|
|
</html>
|