<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title><?php echo e(translate('Password Reset')); ?></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="<?php echo e(dynamicAsset(path: 'public/assets/back-end/css/email-basic.css')); ?>">
</head>
<body>
<?php
$companyPhone = getWebConfig(name: 'company_phone');
$companyEmail = getWebConfig(name: 'company_email');
$companyName = getWebConfig(name: 'company_name');
$companyLogo = getWebConfig(name: 'company_web_logo');
?>
<div class="d-flex justify-content-center align-items-center m-auto vh-100">
<div class="card">
<div class="m-auto bg-white pt-40px pb-40px text-center">
<div class="d-block">
<?php if(is_file('storage/app/public/company/'.$companyLogo)): ?>
<div class="d-flex justify-content-center align-items-center gap-1">
<img src="<?php echo e(dynamicStorage(path: 'storage/app/public/company/'.$companyLogo)); ?>" alt="<?php echo e($companyName); ?>"
class="width-auto h-50px">
<?php echo e($companyName); ?>
</div>
<?php else: ?>
<?php echo e($companyName); ?>
<?php endif; ?>
</div>
</div>
<div class="card-header mb-3 text-center">
<?php echo e(translate('Reset Your password')); ?>
</div>
<div class="card-body">
<a class="btn btn--primary d-block text-center width-100" href="<?php echo e($url); ?>">
<?php echo e(translate('Click to Reset')); ?>
</a>
</div>
</div>
</div>
</body>
</html>
<?php /**PATH /home/amkworld/public_html/resources/views/email-templates/admin-password-reset.blade.php ENDPATH**/ ?>