@php
$general_settings = App\Models\GeneralSetting::all()->first();
$contact = App\Models\Contact::all()->first();
@endphp
@extends('themes.'.config('smartekcms.themes.frontend').'.app', [
'title' => '404 | '.trans('front.smartblue.404.h2'),
'meta_description' => '404 Error Page',
'general_settings' => optional($general_settings),
'contact' => optional($contact)
])
@section('content')
404
{{ trans('front.smartblue.404.h2') }}
{{ trans('front.smartblue.404.h3') }}
@endsection
@section('js')
@parent
@endsection