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

17 lines
740 B
PHP

@extends('layouts.loggedout')
@section('title')
<title>404 - {{ env('APP_NAME') }}</title>
@endsection
@section('titlediscord')
<meta content="404 - {{ env('APP_NAME') }}" property="og:title" />
@endsection
@section('descdiscord')
<meta content="ARCHBLOX is a work in progress revival." property="og:description" />
@endsection
@section('contentloggedout')
<h2>404 | Page Not Found</h2>
<p><button style="width: fit-content;" class="greybutton" onclick="window.history.back();">Back</button></p>
<p>Aw man, look at what you have done. You've made Luigi mad!</p>
<p>Why don't you go back a page for us before Luigi destroys us all.</p>
<img alt="Angry Luigi" src="{{ asset('img/error.png') }}" width="100%" height="max-content">
@endsection