Files
faveo/resources/views/errors/404.blade.php
noor 92d0f9cd48 client-update
changes

changes1

page-changes

lock

color

changes-2

footer

page

toggle-remove

display-dropdown

changes

card-changes

card

changes-button

chnages-article

pages

page-404-fix

breadcrumbs-fix

remove drop-down

Apply fixes from StyleCI

buttons

fixes

existing-fix

changes-3

Apply fixes from StyleCI

changes-4
2023-06-09 15:48:59 +05:30

30 lines
1.2 KiB
PHP

@extends('themes.default1.client.layout.client')
@section('breadcrumb')
{{--<div class="site-hero clearfix">--}}
<ol class="breadcrumb float-sm-right ">
<style>
.words {
margin-right: 10px; /* Adjust the value to increase or decrease the gap between list items */
}
</style>
<li class="breadcrumb-item"> <i class="fas fa-home"> </i> {!! Lang::get('lang.you_are_here') !!} : &nbsp;</li>
<li><a class="words" href="{{url('/')}}">{!! Lang::get('lang.home') !!}</a></li>
@stop
@section('content')
<div id="page" class="hfeed site">
<article class="hentry error404 text-center">
<h1 class="error-title mb-0">4<i class="fas fa-frown text-info"></i><span class="visible-print text-danger" style="display: none">0</span>4</h1>
<h2 class="entry-title text-muted">{!! Lang::get('lang.we_are_sorry_but_the_page_you_are_looking_for_can_not_be_found') !!}</h2>
<div class="entry-content clearfix">
<p><a onclick="goBack()" href="#">{!! Lang::get('lang.go_back') !!}</a></p>
</div><!-- .entry-content -->
</article><!-- .hentry -->
</div><!-- #page -->
<script>
function goBack() {
window.history.back();
}
</script>
@stop