Viewing file: f05f9af5772af9c6452f8ba8cd18ce9c3c7afb55.php (4.66 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="<?php echo e(get_settings('meta_title')); ?>">
<meta name="description" content="<?php echo e(get_settings('meta_description')); ?>">
<!-- font awesome file link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<!-- custom css file link -->
<link rel="stylesheet" href="<?php echo e(asset('front/css/style.css')); ?>">
<link rel="stylesheet" href="<?php echo e(asset('plugins/toastr/toastr.min.css')); ?>">
<title><?php echo $__env->yieldContent('title'); ?></title>
<?php echo $__env->yieldContent('css'); ?>
<style>
.header .navbar ul li a{
font-size: 17px !important;
}
</style>
</head>
<body>
<!-- header section starts -->
<header class="header">
<a href="#" class="logo"><?php echo e(get_settings('app_name')); ?></a>
<div class="fas fa-bars"></div>
<nav class="navbar">
<ul>
<li><a href="#home">home</a></li>
<li><a href="#about">about</a></li>
<li><a href="#service">Features</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">contact</a></li>
<li><a href="#faq">FAQ</a></li>
<?php if(auth('customer')->check()): ?>
<li><a href="<?php echo e(route('customer.logout')); ?>">Logout</a></li>
<?php else: ?>
<li><a target="_blank" href="<?php echo e(route('login')); ?>">Login</a></li>
<?php if(get_settings('registration_status') && get_settings('registration_status')=='enable'): ?>
<li><a target="_blank" href="<?php echo e(route('signup')); ?>">Sign-up</a></li>
<?php endif; ?>
<?php endif; ?>
</ul>
</nav>
</header>
<?php echo $__env->yieldContent('main-content'); ?>
<!-- footer section starts -->
<section class="footer">
<h1>created by all rights reserved.</h1>
<div class="icons">
<a href="<?php echo e(get_settings('facebook_link')); ?>" class="fab fa-facebook-f"></a>
<a href="<?php echo e(get_settings('twitter_link')); ?>" class="fab fa-twitter"></a>
<a href="<?php echo e(get_settings('instagram_link')); ?>" class="fab fa-instagram"></a>
</div>
</section>
<!-- footer section ends -->
<!-- jquery file link -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- custom js file link -->
<script src="<?php echo e(asset('front/js/main.js')); ?>"></script>
<script src="<?php echo e(asset('plugins/jquery/jquery.min.js')); ?>"></script>
<!-- Bootstrap 4 -->
<script src="<?php echo e(asset('plugins/bootstrap/js/bootstrap.bundle.min.js')); ?>"></script>
<!-- AdminLTE App -->
<script src="<?php echo e(asset('js/adminlte.min.js')); ?>"></script>
<script src="<?php echo e(asset('plugins/toastr/toastr.min.js')); ?>"></script>
<?php if(session()->has('success') || session()->has('fail') || count($errors)>0): ?>
<?php if (isset($component)) { $__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975 = $component; } ?> <?php $component = App\View\Components\Alert::resolve(['type' => session()->get('success')?'success':'danger','isErrors' => $errors,'message' => session()->get('success')??session()->get('fail')] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? (array) $attributes->getIterator() : [])); ?> <?php $component->withName('alert'); ?> <?php if ($component->shouldRender()): ?> <?php $__env->startComponent($component->resolveView(), $component->data()); ?> <?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag && $constructor = (new ReflectionClass(App\View\Components\Alert::class))->getConstructor()): ?> <?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?> <?php endif; ?> <?php $component->withAttributes([]); ?> <?php echo $__env->renderComponent(); ?> <?php endif; ?> <?php if (isset($__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975)): ?> <?php $component = $__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975; ?> <?php unset($__componentOriginald4c8f106e1e33ab85c5d037c2504e2574c1b0975); ?> <?php endif; ?>
<?php endif; ?>
<?php echo $__env->yieldContent('extra-scripts'); ?>
</body>
</html>
<?php /**PATH /home/picotech/domains/picomail.picotech.app/public_html/resources/views/layouts/frontLayout.blade.php ENDPATH**/ ?>
|