@php $error_404=App\Models\ErrorPage::find(1); $selected_theme = Session::get('selected_theme'); if ($selected_theme == 'theme_one'){ $active_theme = 'layout'; }elseif($selected_theme == 'theme_two'){ $active_theme = 'layout2'; }elseif($selected_theme == 'theme_three'){ $active_theme = 'layout3'; }else{ $active_theme = 'layout'; } @endphp @extends($active_theme) @section('title')
{{ $error_404->description }}
{{__('user.Go Back Home')}}