Viewing File: /home/ubuntu/route-and-root-backend-base/resources/views/emails/admin/forgot_password.blade.php

<!DOCTYPE html>
<html lang="en" dir="ltr">

<head>
    <meta charset="UTF-8" />
    <title>TLD Email Template</title>
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
    <meta content="" name="description" />
    <meta name="author" content="" />
    <meta name="website" content="" />
    <meta name="email" content="" />
    <meta name="version" content="1.0.0" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <!-- favicon -->
    <link rel="shortcut icon" href="assets/images/favicon.ico" />
    <!-- Font -->
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap" rel="stylesheet">
</head>

<body style=" font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 400; color: #161c2d;">
    <!-- Hero Start -->
    <div style="margin-top: 30px;">
        <table cellpadding="0" cellspacing="0" style="font-family: Nunito, sans-serif; font-size: 15px; font-weight: 400; 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">
                        <a href="{{ Setting::get('frontend_url') }}" rel="noopener" target="_blank">
                            <img src="{{ Setting::get('site_logo') }}" alt="" style="width:150px;padding-top:20px;">
                        </a>
                    </th>
                </tr>
            </thead>
            <tbody style="font-family:'Poppins', sans-serif;">
                <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 0px; color: #8492a6;">
                        You are receiving this email because we received a password reset request for your account. To proceed with the password reset please click on the button below:
                    </td>
                </tr>
                
                <tr>
                    <td style="padding: 15px 24px 0px;">
                        <a href="{{$data['url']}}" rel="noopener" style="text-decoration:none;display:inline-block;text-align:center;padding:0.75575rem 1.3rem;font-size:0.925rem;line-height:1.5;color:#ffffff;background-color:#000;border:0px;margin-right:0.75rem!important;font-weight:600!important;outline:none!important;vertical-align:middle" target="_blank">Reset Password</a>
                    </td>
                </tr>
                @include('emails.users.footer')
            </tbody>
        </table>
    </div>
    <!-- Hero End -->
</body>

</html>
Back to Directory File Manager