Viewing File: /home/ubuntu/vedadeals-backend-base/resources/views/emails/users/change_password.blade.php

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{{ Setting::get('site_name') }}</title>
    <link rel="shortcut icon" href="{{ Setting::get('site_icon') }}" />
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
</head>
<body style=" font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 400; color: #000; margin: 0; padding: 0;">
    <div style="margin-top: 30px;">
        <table cellpadding="0" cellspacing="0" style=" max-width: 600px; border: none; margin: 0 auto; border-radius: 6px; overflow: hidden; background-color: #fff; box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);">
            <thead>
                <tr style="padding: 3px 0; text-align: center; color: #fff; font-size: 24px; letter-spacing: 1px;">
                    <th scope="col">
                        <img src="{{ Setting::get('site_logo') }}" alt="" style="max-width: 10em;padding-top:20px;">
                    </th>
                </tr>
            </thead>
            <tbody>
                <tr>
                    <td style="padding: 25px 24px 0; color: #161c2d; font-size: 18px; font-weight: 800;">
                        Hi, {{ $email_data['name'] }}!
                    </td>
                </tr>
                <tr>
                    <td style="padding: 15px 24px 10px; color: #8492a6;">
                        You received this E-mail as a notification to your password being changed successfully.
                    </td>
                </tr>
                <tr>
                    <td style="text-align: center; padding: 2em 0 1em;">
                        <a href="{{ Setting::get('frontend_url') }}" target="_blank" style="text-align: center;background-color: #ffd76e;color: #000; padding: 0.6em 2em; border-radius: 50px; font-size: 1.1em; font-weight: 500; text-decoration: none;"> {{ tr('visit_website') }}
                        </a>
                    </td>
                </tr>
                @include('emails.users.footer')
            </tbody>
        </table>
    </div>
</body>
</html>
Back to Directory File Manager