<?php $__env->startSection('meta_title'); ?><?php echo e($page->meta_title); ?><?php $__env->stopSection(); ?>
<?php $__env->startSection('meta_description'); ?><?php echo e($page->meta_description); ?><?php $__env->stopSection(); ?>
<?php $__env->startSection('meta_keywords'); ?><?php echo e($page->tags); ?><?php $__env->stopSection(); ?>
<?php $__env->startSection('meta'); ?>
<!-- Schema.org markup for Google+ -->
<meta itemprop="name" content="<?php echo e($page->meta_title); ?>">
<meta itemprop="description" content="<?php echo e($page->meta_description); ?>">
<meta itemprop="image" content="<?php echo e(uploaded_asset($page->meta_image)); ?>">
<!-- Twitter Card data -->
<meta name="twitter:card" content="website">
<meta name="twitter:site" content="@publisher_handle">
<meta name="twitter:title" content="<?php echo e($page->meta_title); ?>">
<meta name="twitter:description" content="<?php echo e($page->meta_description); ?>">
<meta name="twitter:creator" content="@author_handle">
<meta name="twitter:image" content="<?php echo e(uploaded_asset($page->meta_image)); ?>">
<!-- Open Graph data -->
<meta property="og:title" content="<?php echo e($page->meta_title); ?>" />
<meta property="og:type" content="website" />
<meta property="og:url" content="<?php echo e(URL($page->slug)); ?>" />
<meta property="og:image" content="<?php echo e(uploaded_asset($page->meta_image)); ?>" />
<meta property="og:description" content="<?php echo e($page->meta_description); ?>" />
<meta property="og:site_name" content="<?php echo e(env('APP_NAME')); ?>" />
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<section class="pt-4 mb-4">
<div class="container text-center">
<div class="row">
<div class="col-lg-6 text-center text-lg-left">
<h1 class="fw-600 h4"><?php echo e($page->getTranslation('title')); ?></h1>
</div>
<div class="col-lg-6">
<ul class="breadcrumb bg-transparent p-0 justify-content-center justify-content-lg-end">
<li class="breadcrumb-item has-transition opacity-50 hov-opacity-100">
<a class="text-reset" href="<?php echo e(route('home')); ?>"><?php echo e(translate('Home')); ?></a>
</li>
<li class="text-dark fw-600 breadcrumb-item">
"<?php echo e(translate('Terms & conditions')); ?>"
</li>
</ul>
</div>
</div>
</div>
</section>
<section class="mb-4">
<div class="container">
<div class="p-4 bg-white rounded shadow-sm overflow-hidden mw-100 text-left">
<?php
echo $page->getTranslation('content');
?>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/devs.lapieza.net/resources/views/frontend/policies/terms.blade.php ENDPATH**/ ?> |