diaREact/resources/views/errors/404.blade.php

24 lines
883 B
PHP

<x-guest-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Page not found') }}
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-3xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white content-center overflow-hidden shadow-sm sm:rounded-lg">
<div class="grid place-items-center p-3">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
{{ __('Page not found') }}
</h2>
<img src="{{ asset('img/undraw_page_not_found_re_e9o6.svg') }}" class="w-60 h-60 fill-current text-gray-500" />
<a href="{{ route('pages.index') }}">{{ __('Return to homepage') }}</a>
</div>
</div>
</div>
</div>
</x-guest-layout>