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

15 lines
323 B
PHP

@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