areya-energy/content/errors/404.blade.php

56 lines
796 B
PHP
Raw Normal View History

2022-05-12 11:10:19 +00:00
@extends('template.'.config('settings.template').'.content.master')
@section('content')
<div class="container">
<div class="row">
<div class="col">
<br>
<br>
<br>
<br>
<br>
<h1>404 Error</h1>
<p class="text-muted">This site does not exist. </p>
<br>
<br>
<p class="fs-4"> Either you misspelled the URL or the page got deleted.</p>
<br>
<a class="btn btn-primary" href="{{url('/')}}">Return to the Home Page</a>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
</div>
</div>
</div>
@stop