@extends('site.layouts.app', [
'light_menu' => true
])
@section('title', __('Not Found'))
@section('code', '404')
@section('content')
<main class="app-content app-content-fnone">
<div class="server-error">
<div class="server-error__wrapper">
<img src="/files/servererror.png" alt="500">
<p class="server-error__wrapper-text">
Server error </br>
Ooops, something went wrong.
</p>
</div>
</div>
</main>
@stop