<?php $__env->startSection('content'); ?>

<div class="px-4 md:px-0 md:flex py-8 not-found-container w-full max-w-6xl">
    <div class="flex-1"></div>

    <div class="flex-2">
        <div class="text-block">
            <h1>Page Not Found</h1>
            <p>Sorry, there is no page with that address</p>
        </div>
    </div>
</div>

<?php

$terms = Illuminate\Support\Str::replace(env('APP_URL'), '', url()->current());
$terms = Illuminate\Support\Str::replace('/', ' ', $terms);
$terms = Illuminate\Support\Str::replace('-', ' ', $terms);
$terms = Illuminate\Support\Str::replace('.', ' ', $terms);

?>
<div class="mt-8 w-full max-w-6xl">
    <global-search :inline="true" initial-terms="<?php echo e($terms); ?>" paginator-id="404"></global-search>
</div>

<?php $__env->stopSection(); ?>

<?php echo $__env->make('app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/html/resources/views/errors/404.blade.php ENDPATH**/ ?>