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

15 lines
323 B
PHP
Raw Normal View History

2021-07-17 12:07:20 +00:00
@extends('layouts.auth')
@section('htmlheader_title')
404
@endsection
@section('content')
<div class="row">
<div class="col-6 m-auto">
<h3>404 - Not found?</h3>
<p>Sorry, I cant find what you are looking for. Try again?</p>
<p><a href="{{ url('/') }}" class="goback">Home</a></p>
</div>
</div>
@endsection