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

{{ __('Maintenance Page') }}

{{ __('Customize the content shown during site maintenance') }}

@if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf
@php $maint_img_id = get_static_option('maintain_page_logo'); $maint_img_src = $maint_img_id ? get_attachment_image_by_id($maint_img_id, null, false) : null; @endphp
@if(!empty($maint_img_src)) @else
@endif
{{ __('Recommended: 540×345px') }}
@can('update-maintenance-page')
@endcan
@endsection @section('script') @endsection