@extends ('app')

@section ('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);

@endphp
<div class="mt-8 w-full max-w-6xl">
    <global-search :inline="true" initial-terms="{{ $terms }}" paginator-id="404"></global-search>
</div>

@endsection
