<!DOCTYPE html>
<!--[if lt IE 9]><script src="<?php echo asset('js/respond.min.js'); ?>"></script><![endif]-->
<!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]-->
<html class="no-js" lang="en" >

<head>
    <meta charset="utf-8">
    <!-- If you delete this meta tag World War Z will become a reality -->
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Prestige | <?php echo $__env->yieldContent('title'); ?></title>

    <!-- If you are using the CSS version, only link these 2 files, you may add app.css to use for your overrides if you like -->
    <link rel="stylesheet" href="<?php echo asset('css/normalize.css'); ?>">
    <link rel="stylesheet" href="<?php echo asset('css/foundation.css'); ?>">
    <link rel="stylesheet" href="<?php echo asset('css/font-awesome.min.css'); ?>">
    <link rel="stylesheet" href="<?php echo asset('css/app.css'); ?>">
    <link rel="stylesheet" href="<?php echo asset('css/slick.css'); ?>">

    <?php echo $__env->yieldContent('styles'); ?>

    <script src="<?php echo asset('js/vendor/modernizr.js'); ?>"></script>
    <script src=<?php echo asset('https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js'); ?>></script>
    <script type="text/javascript">
    $(window).load(function() {
        $(".loader").fadeOut("slow");
    });
    </script>


</head>
<?php if(Session::has('view-search-error')): ?>
    <div data-alert class="alert-box alert">
        <?php echo Session::get('view-search-error'); ?>

        <a href="#" class="close">&times;</a>
    </div>
<?php endif; ?>

<!-- error message -->
<?php if(Session::has('view-error')): ?>
    <div data-alert class="alert-box alert">
        <?php echo Session::get('view-error'); ?>

        <a href="#" class="close">&times;</a>
    </div>
<?php endif; ?>

<!-- success message -->
<?php if(Session::has('view-success')): ?>
    <div data-alert class="alert-box">
        <?php echo Session::get('view-success'); ?>

        <a href="#" class="close">&times;</a>
    </div>
<?php endif; ?>
<body>
<div class="">
<!-- body content here -->
 <?php echo $__env->yieldContent('content'); ?>

<script src="<?php echo asset('js/vendor/jquery.js'); ?>"></script>

<script src="<?php echo asset('js/foundation.min.js'); ?>"></script>
<script>
    $(document).foundation();
</script>
<script src="<?php echo asset('js/scripts.js'); ?>" type="text/javascript"></script>

<?php echo $__env->yieldContent('scripts'); ?>
</div>
</body>
</html>