@extends('backend.layout') @section('content')
{{ __('Update Maintenance Mode') }}
@csrf

@if (!empty($data->maintenance_img)) maintenance image @else ... @endif
{{ __('Choose Image') }}
@if ($errors->has('maintenance_img'))

{{ $errors->first('maintenance_img') }}

@endif
@if ($errors->has('maintenance_status'))

{{ $errors->first('maintenance_status') }}

@endif
@if ($errors->has('maintenance_msg'))

{{ $errors->first('maintenance_msg') }}

@endif

{{ __('After activating maintenance mode, You can access the website via') }} {{ url('{secret_path}') }}

{{ __('Try to avoid using special characters') }}

@endsection