HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/public_html/printmanager/resources/views/email/registration/admin/success.blade.php
<!DOCTYPE html>
<html>

<head>
    <meta charset="UTF-8">
    <title>Welcome to the {{ env('APP_NAME', 'Manage Printers By POS Scales & Surveillance'),}}</title>
    <style>
        /* Inline styles for simplicity, consider using CSS classes for larger templates */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background-color: #ffffff;
        }

        .logo {
            text-align: center;
            background-color: #28166f;
            padding: 10px;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border: 1px solid #28166f;
        }

        .logo img {
            max-width: 140px;
            background-color: #ffffff;
            padding: 10px;
            border-radius: 10px;
        }

        .message {
            padding: 20px;
            background-color: #ffffff;
            color: #28166f;
            border: 1px solid #28166f;
            padding-bottom: 40px;
            padding-top: 40px;
            min-height: 250px;
        }

        .message p {
            margin-bottom: 10px;
        }

        .footer {
            text-align: center;
            padding: 20px;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            color: #fff;
            background-color: #28166f;
            border: 1px solid #28166f;

        }

        .footer a {
            color: #fff;
            text-decoration: none;
        }
    </style>
</head>

<body>
    <div class="container">
        <div class="logo">
            <img src="{{ env('APP_LOGO', 'https://posscales.com.au/WP-POS/wp-content/uploads/2018/05/cropped-pos-logo-1-1.png'),}}" alt="">
        </div>
        <div class="message">
            <p>Hello <strong>Admin</strong>,</p>
            <p>We get new request for the printer registration details are below. <br><br></p>
           
            <h3>Site Information</h3>
            <p> Site Name: {{$mailData['site_name']}}</p>
            <p> Domain: {{$mailData['site_domain']}}  <br><br></p>
    
         
            <h3>User Information</h3>
            <p> Name: {{$mailData['name']}}</p>
            <p> User Email: {{$mailData['user_email']}} <br> <br></p>

            <p> You can approve or decline from <a href="{{route('filament.admin.resources.tenants.take-action', $mailData['site_name'])}}">here.</a> Untill your approval the user will not able to access the site.</a>

        </div>

        <div class="footer">
            <a href="https://posscales.com.au/"> {{ env('APP_NAME', 'Manage Printers By POS Scales & Surveillance')}}</a>
        </div>

    </div>
</body>

</html>