38 lines
1.7 KiB
PHP
Executable File
38 lines
1.7 KiB
PHP
Executable File
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<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=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
|
|
<body style="font-family: inter;">
|
|
<div style="max-width: 640px; margin-left: auto; margin-right: auto;">
|
|
<div style="padding: 30px;">
|
|
<!-- Email Header -->
|
|
<div style="margin-bottom: 45px;">
|
|
<a href="<?php echo e(config('app.url')); ?>">
|
|
<img
|
|
src="<?php echo e(vite()->asset('images/logo.svg')); ?>"
|
|
alt="<?php echo e(config('app.name')); ?>"
|
|
style="height: 40px; width: 110px;"
|
|
/>
|
|
</a>
|
|
</div>
|
|
|
|
<!-- Email Content -->
|
|
<?php echo e($slot); ?>
|
|
|
|
|
|
<!-- Email Footer -->
|
|
<p style="font-size: 16px;color: #202B3C;line-height: 24px;">
|
|
<?php echo app('translator')->get('admin::app.emails.common.cheers', ['app_name' => config('app.name')]); ?>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /var/www/html/packages/Webkul/Admin/src/Resources/views/emails/layout.blade.php ENDPATH**/ ?>
|