@extends('admin.layout') @section('title', 'Backup & Restore') @section('page_title', 'Backup & Restore') @section('extra_styles') @include('admin.partials.settings-styles') @endsection @section('content')

Backup & Restore

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
Users & Settings Backup
Export users & settings Downloads a JSON file containing all user accounts and system settings. Does not include media files.
Restore users & settings Upload a previously exported backup JSON. Existing users are matched by email and updated; new users are created. Settings are merged.
@csrf
@endsection