- DB: users.username (unique), users.preferred_locale (default from app.locale) - Backend: validation, model fillable; share supportedLocales; SetLocaleFromUser - Frontend: profile page fields + types - Filament: SuperAdmin profile page with username/language feat(admin-nav): move Tasks to Bibliothek and add menu labels fix(tasks-table): show localized title/emotion/event type; add translated headers feat(l10n): add missing table headers for emotions and event types; normalize en/de files refactor: tidy translations for tasks/emotions/event types
15 lines
396 B
PHP
15 lines
396 B
PHP
<x-filament-panels::page>
|
|
<x-filament-panels::form wire:submit="doImport">
|
|
{{ $this->form }}
|
|
|
|
<x-filament-panels::form.actions
|
|
:actions="[
|
|
|
|
]"
|
|
/>
|
|
<x-filament::button type="submit" >
|
|
{{ __('admin.common.import') }}
|
|
</x-filament::button>
|
|
</x-filament-panels::form>
|
|
</x-filament-panels::page>
|