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,38 @@
@extends('layouts.master-without-nav')
@section('title')
@lang('translation.offline-page')
@endsection
@section('content')
<!-- auth-page wrapper -->
<div class="auth-page-wrapper auth-bg-cover py-5 d-flex justify-content-center align-items-center min-vh-100">
<div class="bg-overlay"></div>
<!-- auth-page content -->
<div class="auth-page-content overflow-hidden pt-lg-5">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-5">
<div class="card overflow-hidden">
<div class="card-body p-4">
<div class="text-center">
<img src="{{ URL::asset('assets/images/auth-offline.gif') }}" alt="" height="210">
<h3 class="mt-4 fw-semibold">We're currently offline</h3>
<p class="text-muted mb-4 fs-14">We can't show you this images because you aren't connected to the internet. When youre back online refresh the page or hit the button below</p>
<button class="btn btn-success btn-border" onClick="window.location.href=window.location.href"><i class="ri-refresh-line align-bottom"></i> Refresh</button>
</div>
</div>
</div>
<!-- end card -->
</div>
<!-- end col -->
</div>
<!-- end row -->
</div>
<!-- end container -->
</div>
<!-- end auth page content -->
</div>
<!-- end auth-page-wrapper -->
@endsection
@section('script')
@endsection