'', 'registerUrl' => '', ]; } public function mount(): void { $this->registerUrl = app(FormSettings::class)->registerUrl; $this->clearCacheUrl = app(FormSettings::class)->clearCacheUrl; } public function save(): void { app(FormSettings::class)->fill($this->validate())->save(); $this->dispatch('success', 'Einstellungen gespeichert.'); } public function render() { return <<<'HTML'
Hier kannst du Einstellungen für Anmeldeformulare setzen.
HTML; } }