<?php $__env->startSection('header.title'); ?>
    <?php echo $__env->yieldContent('title'); ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('main'); ?>
    <section class="py-5 bg-primary text-light">
        <div class="container text-center">
            <?php if (! empty(trim($__env->yieldContent('title')))): ?>
                <h1 class="mb-5">
                    <?php echo $__env->yieldContent('title'); ?>
                </h1>
            <?php endif; ?>

            <div class="ml-4 text-lg text-gray-500 uppercase tracking-wider">
                <?php echo $__env->yieldContent('message'); ?>

                <div class="mt-3">
                    <a class="btn btn-outline-secondary" href="<?php echo e(route('home')); ?>">Revenir à l'accueil du site</a>
                </div>
            </div>
        </div>
    </section>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('frontend.layouts.home', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/pluma/web/lcrh/resources/views/errors/minimal.blade.php ENDPATH**/ ?>