@php
SeoHelper::setTitle(__('404 - Not found'));
Theme::fireEventGlobalAssets();
$image = theme_option('404_page_image') ?
RvMedia::getImageUrl(theme_option('404_page_image')) :
Theme::asset()->url('/images/404.png');
@endphp
@extends(Theme::getThemeNamespace('layouts.base'))
@section('main')
{{ __('Oops, nothing to see here') }}:
- {{ __("Unfortunately, we couldn't find what you were looking for or the page no longer exists.") }}
{{ __('Back to Homepage') }}
{!! Theme::partial('footer') !!}
@endsection