@extends('layouts.admin') @section('title', 'Security Settings') @section('content')

Security Settings

Manage application security and login throttling policies.

@if(session('success'))
{{ session('success') }}
@endif
@csrf

Login Throttling

Protect against brute-force attacks by limiting login attempts.

Attempts

The number of times a user can attempt to log in before being locked out.

@error('login_max_attempts')

{{ $message }}

@enderror
Minutes

How many minutes the user must wait before attempting to log in again after being locked out.

@error('login_decay_minutes')

{{ $message }}

@enderror

Dashboard Auto-Refresh

Configure automatic refreshing of the dashboard to update schedule statuses.

If enabled, the dashboard will reload automatically to check for new schedule statuses (e.g. Missed, Completed).

Minutes

How often the dashboard should refresh (in minutes).

@error('dashboard_refresh_interval')

{{ $message }}

@enderror
@endsection