firstcommit
This commit is contained in:
51
resources/views/theme/spade/errors/404.blade.php
Normal file
51
resources/views/theme/spade/errors/404.blade.php
Normal file
@@ -0,0 +1,51 @@
|
||||
@extends('theme.spade.layouts.main')
|
||||
|
||||
@section('title') {{ env('APP_NAME') }} @endsection
|
||||
|
||||
@section('meta')
|
||||
<meta name="title" content="{{ $seoSetting['meta_title'] }}" />
|
||||
<meta name="description" content="{{ $seoSetting['meta_detail'] }}">
|
||||
<meta name="keywords" content="{{ $seoSetting['meta_keywords'] }}" />
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
@php
|
||||
$breadcrumbData = [
|
||||
[
|
||||
'title' => 'Error',
|
||||
'link' => null
|
||||
],
|
||||
[
|
||||
'title' => '404',
|
||||
'link' => null
|
||||
]
|
||||
];
|
||||
@endphp
|
||||
@include('theme.spade.layouts.includes.breadcrumb', $breadcrumbData)
|
||||
|
||||
<section class="privary-policy">
|
||||
<div class="auto-container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="blog-area">
|
||||
<div class="post-item">
|
||||
<div class="post wow fadeInUp animated" style="margin-bottom: 0px; visibility: visible; animation-name: fadeInUp;">
|
||||
<div class="post-content wow fadeInUp animated" style="visibility: visible; animation-name: fadeInUp;">
|
||||
<div class="text-center">
|
||||
<img src="{{ asset('source/images/404.jpg') }}" height="250" style="padding-bottom: 20px;">
|
||||
<p>We are sorry, but the page you requested was not found.</p>
|
||||
<div class="link-btn">
|
||||
<a href="{{ route('home') }}" class="primary-btn hvr-bounce-to-left">
|
||||
<span class="btn-text">Back to Home</span> <strong class="icon"><span class="f-icon flaticon-right11"></span></strong>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@endsection
|
Reference in New Issue
Block a user