Settings

@csrf @method('PUT')

Authentication & Access Control

Configure login security and session management

enable_two_factor_auth ?? false) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Require 2FA for all user accounts

@error('session_timeout_minutes')

{{ $message }}

@enderror
@error('password_expiry_days')

{{ $message }}

@enderror
@error('max_login_attempts')

{{ $message }}

@enderror
@error('lockout_duration_minutes')

{{ $message }}

@enderror

Password Requirements

Set password complexity and strength requirements

@error('min_password_length')

{{ $message }}

@enderror
require_uppercase ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">
require_lowercase ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">
require_numbers ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">
require_special_characters ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Data Protection & Logging

Configure data encryption, audit logging, and backup settings

enable_data_encryption ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Encrypt sensitive customer and vehicle data

enable_audit_logging ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Log all user actions and system changes

enable_backup_alerts ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Send notifications about backup status

@error('audit_log_retention_days')

{{ $message }}

@enderror

API Security

Configure API access and rate limiting

enable_api_rate_limiting ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Limit the number of API requests per minute

@error('api_requests_per_minute')

{{ $message }}

@enderror
@error('allowed_ip_addresses')

{{ $message }}

@enderror

Enter one IP address per line. Leave empty to allow all IP addresses.

Customer Portal Security

Configure customer access and data permissions

allow_customer_portal ?? true) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Allow customers to access their repair history and estimates

allow_customer_data_download ?? false) ? 'checked' : '' }} class="focus:ring-blue-500 h-4 w-4 text-blue-600 border-gray-300 dark:border-gray-600 rounded dark:bg-gray-700">

Let customers download their data (GDPR compliance)

@error('customer_session_timeout_minutes')

{{ $message }}

@enderror
Cancel