@extends('backend.layout.master-tailwind') @section('title', __('404 Page Settings')) @section('admin_styles') @endsection @section('content')

{{ __('404 Page') }}

{{ __('Customize the content shown on your 404 error page') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
@php $err_img_id = get_static_option('error_image'); $err_img_src = $err_img_id ? get_attachment_image_by_id($err_img_id, null, false) : null; @endphp
@if(!empty($err_img_src)) @else
@endif
{{ __('Recommended: 172×290px') }}
@can('update-404-page')
@endcan
@endsection @section('script') @endsection