@extends('admin.dashboard') @section('settings-content')

System Settings

Configure system-wide settings for the Elderly Care Connect platform.

@if(session('success'))

{{ session('success') }}

@endif
@csrf

Brief description of the site that appears in search engines and social media.

When enabled, the site will display a maintenance message to all non-admin users.

Warning: Enabling global currency override will force all users to use the same currency throughout the application, regardless of their preferences.

@csrf

When enabled, all currency selections throughout the application will be forced to use the default currency below.

Current status: {{ $globalCurrencyOverride ? 'Enabled' : 'Disabled' }}

This currency will be used throughout the application when global override is enabled.

Current default: {{ $defaultCurrency }}

@if($errors->has('default_currency'))
    @foreach($errors->get('default_currency') as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
$
%

Comma-separated list of suggested donation amounts.

When enabled, donors can choose to hide their identity when making donations.

@csrf

When enabled, new users will receive a welcome email upon registration.

When enabled, donors will receive email receipts for their donations.

Email address to receive important system notifications. Leave blank to use the default admin email.

@csrf

Determines which user types require KYC verification.

Maximum number of failed login attempts before account lockout.

Duration in minutes for account lockout after exceeding max login attempts.

Number of days after which passwords expire. Set to 0 to disable password expiry.

When enabled, users can set up two-factor authentication for their accounts.

When enabled, all administrators must use two-factor authentication.

@endsection