@extends('layouts.adminmaster') @section('styles') @endsection @section('content')
{{lang('Country Block/Unblock Setting')}}
@csrf @php $countrylist = explode(",", setting('COUNTRY_LIST')); @endphp
@if ($errors->has('countrylist')) {{ $errors->first('countrylist') }} @endif
{{lang('Admin Country Block/Unblock Setting')}}
@csrf
@php $admincountrylist = explode(",", setting('ADMIN_COUNTRY_LIST')); @endphp
@if ($errors->has('admincountrylist')) {{ $errors->first('admincountrylist') }} @endif
{{lang('DOS Attack Setting')}}
@csrf
({{lang('If you enable this setting, it prevents denial-of-service (DoS) attacks on the application.')}})
{{lang('If there are more than')}} {{lang('attempts in')}} {{lang('seconds')}}
{{--Validation--}}
@if ($errors->has('ip_max_attempt')) {{ $errors->first('ip_max_attempt') }} @endif
@if ($errors->has('ip_seconds')) {{ $errors->first('ip_seconds') }} @endif
{{--Validation--}}
{{lang('Domain Lists')}}({{lang('Add the list of domains, separated by commas (,). The domains specified below will be allowed or blocked based on your preference when creating a guest ticket.', 'general')}})
@csrf
@endsection @section('scripts') @endsection