51 lines
2.3 KiB
PHP
51 lines
2.3 KiB
PHP
@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' => '500',
|
|
'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/500.jpg') }}" height="360">
|
|
<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 |