@extends('admin.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::to('/') }}/token-value
{{ __('Don not use special character in token.') }}

@endsection