sifatbaho

This commit is contained in:
2026-04-05 05:31:24 +05:00
commit df3d57f503
2609 changed files with 369825 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
@extends('layouts.master-without-nav')
@section('title')
@lang('translation.404')
@endsection
@section('body')
<body>
@endsection
@section('content')
<div class="auth-page-wrapper pt-5">
<!-- auth page bg -->
<div class="auth-one-bg-position auth-one-bg" id="auth-particles">
<div class="bg-overlay"></div>
<div class="shape">
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"
viewBox="0 0 1440 120">
<path
d="M 0,36 C 144,53.6 432,123.2 720,124 C 1008,124.8 1296,56.8 1440,40L1440 140L0 140z"></path>
</svg>
</div>
</div>
<!-- auth page content -->
<div class="auth-page-content">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-center pt-4">
<div class="">
<img src="{{ URL::asset('assets/images/error.svg') }}" alt=""
class="error-basic-img move-animation">
</div>
<div class="mt-n4">
<h1 class="display-1 fw-medium">404</h1>
<h3 class="text-uppercase">Sorry, Page not Found 😭</h3>
<p class="text-muted mb-4">The page you are looking for not available!</p>
<a href="{{route("root")}}" class="btn btn-success"><i
class="mdi mdi-home me-1"></i>Back to
home</a>
</div>
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end auth page content -->
<!-- footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="text-center">
<p class="mb-0 text-muted">&copy;
<script>
document.write(new Date().getFullYear())
</script>
Sifat Baxolash. Crafted with <i class="mdi mdi-heart text-danger"></i>
by Xayrullayev Bexzod
</p>
</div>
</div>
</div>
</div>
</footer>
<!-- end Footer -->
</div>
<!-- end auth-page-wrapper -->
@endsection
@section('script')
<!-- particles js -->
<script src="{{ URL::asset('assets/libs/particles.js/particles.js.min.js') }}"></script>
<!-- particles app js -->
<script src="{{ URL::asset('assets/js/pages/particles.app.js') }}"></script>
@endsection