@section('page-title', 'System Settings')

System Settings

Manage application-wide configuration settings

Back to Dashboard

Branding

Upload your organization's logo and favicon

@csrf
Current Logo

PNG, JPG or WebP. Max 2MB. Used in sidebar and login page.

Current Favicon

PNG, JPG, WebP or ICO. Max 1MB. Shown in browser tab.

@error('logo')

{{ $message }}

@enderror @error('favicon')

{{ $message }}

@enderror
@if($featureFlags->count() > 0)

Feature Management

Enable or disable platform features

@foreach($featureFlags as $group => $flags)

{{ ucwords(str_replace('_', ' ', $group)) }}

@foreach($flags as $flag)

{{ $flag->name }}

{{ $flag->description }}

@csrf
@endforeach
@endforeach
@endif
@csrf @foreach($settings as $group => $groupSettings)

{{ ucwords(str_replace('_', ' ', $group)) }}

@foreach($groupSettings as $setting)
@if($setting->type === 'boolean') @elseif(in_array($setting->type, ['integer', 'float'])) @else @endif
@endforeach
@endforeach
Cancel