@extends('admin.layout') @section('content')
Update Maintenance Page & Mode
@csrf
...

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

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

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

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

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

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

@endif

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

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

@endsection