<!DOCTYPE html>
<html>

<head>
    <title>Welcome to Your Account</title>
</head>

<body style="font-family: Arial, sans-serif; line-height: 1.6; color: #333;">
    <h2>Welcome, {{ $name }}!</h2>
    <p>We're excited to have you on board! Your account has been successfully created. Below are your login credentials:</p>

    <p><strong>Username:</strong> {{ $username }}</p>
    <p><strong>Password:</strong> {{ $password }}</p>

    <p>Please keep this information secure and do not share it with anyone.</p>

    <p>
        <a href="{{ config('app.url') }}"
           style="display: inline-block; padding: 10px 20px; background-color: #007bff; color: #fff; text-decoration: none; border-radius: 5px;">
           Login to Your Account
        </a>
    </p>

    <p>If you have any questions or need assistance, please contact our support team.</p>

    <p>Thank you,<br>{{ config('app.name') }} Team</p>
</body>

</html>
