@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

{{ __('During maintenance, you can access the system through this token') }}
{{ url('/token-value') }}
{{ __('Do not use special character in token') }}

@endsection