{% extends 'layout/base.twig' %} {% set title = 'Settings' %} {% set pageTitle = 'System Settings' %} {% set pageDescription = 'Configure application, email, and monitoring settings' %} {% set pageIcon = 'fas fa-cog' %} {% set currentNotificationDays = settings.notification_days_before|default('30,15,7,3,1') %} {% set currentCheckInterval = settings.check_interval_hours|default('24') %} {% set lastCheckRun = settings.last_check_run|default(null) %} {% set currentVer = appSettings.app_version|default('0') %} {% set updateChannel = updateSettings.update_channel|default('stable') %} {% block content %}

Application Settings

Configure basic application information

{{ csrf_field() }}

Name displayed in the interface

Base URL for the application (used in emails and links)

Application timezone for dates and times

User Registration

Allow new users to create accounts via registration form

Users must verify their email address before accessing the system

{% endblock %}