Files
CHIEFSOFT\ameye 346346573f first commit
2024-01-25 13:06:29 -05:00

59 lines
2.4 KiB
PHP

@extends('layouts.master-auth')
@section('title')
404
@endsection
@section('css')
<!-- extra css -->
@endsection
@section('content')
<div class="w-100">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-6">
<div class="auth-card mx-lg-3">
<div class="card border-0 mb-0">
<div class="card-body text-center p-4">
<div class="text-center px-sm-5 mx-5">
<img src="{{ URL::asset('build/images/error400.png') }}" class="img-fluid" alt="">
</div>
<div class="mt-4 text-center pt-3">
<div class="position-relative">
<h4 class="fs-18 error-subtitle text-uppercase mb-0">Oops, page not found</h4>
<p class="fs-15 text-muted mt-3">It will be as simple as Occidental in fact,
it will Occidental to an English person</p>
<div class="mt-4">
<a href="index" class="btn btn-primary"><i
class="mdi mdi-home me-1"></i>Back to home</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--end col-->
</div>
<!--end row-->
</div>
<!--end container-->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-center">
<p class="mb-0 text-muted">©
<script>
document.write(new Date().getFullYear())
</script> Toner. Crafted with <i class="mdi mdi-heart text-danger"></i> by
Themesbrand
</p>
</div>
</div>
</div>
</div>
</footer>
</div>
@endsection