first commit

This commit is contained in:
2023-05-16 15:54:23 +03:00
commit 57f2db0d47
1414 changed files with 381371 additions and 0 deletions

View File

@ -0,0 +1,17 @@
@extends('layout.master2')
@section('content')
<div class="page-content d-flex align-items-center justify-content-center">
<div class="row w-100 mx-0 auth-page">
<div class="col-md-8 col-xl-6 mx-auto d-flex flex-column align-items-center">
<img src="{{ url('assets/images/others/404.svg') }}" class="img-fluid mb-2" alt="404">
<h1 class="fw-bolder mb-22 mt-2 tx-80 text-muted">404</h1>
<h4 class="mb-2">Page Not Found</h4>
<h6 class="text-muted mb-3 text-center">Oopps!! The page you were looking for doesn't exist.</h6>
<a href="{{ url('/') }}">Back to home</a>
</div>
</div>
</div>
@endsection