@foreach([
BASIC_SETTINGS => \App\Models\Account::$basicSettings,
ADVANCED_SETTINGS => \App\Models\Account::$advancedSettings,
] as $type => $settings)
{{ trans("texts.{$type}") }}
@if ($type === ADVANCED_SETTINGS && ! Utils::isPaidPro())
{{ strtoupper(trans('texts.pro')) }}
@endif
@endforeach
@if (Utils::isSelfHost() && Utils::hasModuleSettings())
{{ trans('texts.custom_module_settings') }}
@foreach(Utils::getModulesWithSettings() as $module)
@endforeach
@endif