@extends('adminlte::page') @section('title', 'System & Backups') @include('partials.ui-polish') @section('content_header')

System & Backups

Global settings, support, health, backup schedules, and disaster recovery status @stop @section('content') @if(session('success')) {{ session('success') }} @endif @if($errors->any()) @endif
@csrf @method('PUT') @forelse($settings as $group => $items)
{{ $group }}
@foreach($items as $setting) @endforeach @empty
No platform settings configured.
@endforelse
@include('admin.platform.partials.support-table', ['tickets' => $tickets])
@csrf {{ old('notes') }}
@include('admin.platform.partials.backup-table', ['backups' => $backups])
@foreach($usage['usersByRole'] as $role => $total) @endforeach
RoleUsers
{{ $role }}{{ $total }}
@stop