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

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

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

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

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

@endif

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

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

@endsection