auditionadmin/resources/views/emails/new_user_password.blade.php

16 lines
454 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>
{{--TODO make this template less.... bad--}}