⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.162
Server IP:
147.93.29.146
Server:
Linux server.tagooz.co 5.14.0-503.15.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Nov 28 07:25:19 EST 2024 x86_64
Server Software:
Apache
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
webstoremaker
/
www
/
resources
/
views
/
errors
/
View File Name :
404.blade.php
@extends('front.layout') @php if (session()->has('lang')) { app()->setLocale(session()->get('lang')); } else { $defaultLang = app\Models\Language::where('is_default', 1)->first(); if (!empty($defaultLang)) { app()->setLocale($defaultLang->code); } } @endphp @section('breadcrumb-title') {{ __('Page Not Found') }} @endsection @section('breadcrumb-link') {{ __('404') }} @endsection @section('content') <!-- Error section start --> <div class="error-section ptb-120 text-center"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-6"> <div class="not-found"> <svg data-src="{{ asset('assets/front/img/404.svg') }}" data-unique-ids="disabled" data-cache="disabled"></svg> </div> <div class="error-txt"> <h2>{{ __("You're lost") }}...</h2> <p class="mx-auto"> {{ __('The page you are looking for might have been moved, renamed, or might never existed.') }} </p> <a href="{{ route('front.index') }}" class="btn btn-lg btn-primary">{{ __('Go to Home') }}</a> </div> </div> </div> </div> </div> <!-- Error section end --> @endsection