9 lines
243 B
PHP
9 lines
243 B
PHP
@extends("layout.main")
|
|
@section("content")
|
|
<div class="text-center">
|
|
<h1>Page not found</h1>
|
|
<img src='/logo.png'>
|
|
<p>The page you were looking for could not be found. Maybe you should look for a different one instead.</p>
|
|
</div>
|
|
@endsection
|