diff --git a/resources/views/livewire/auth/confirm-password.blade.php b/resources/views/livewire/auth/confirm-password.blade.php index a6a45b3..9234131 100644 --- a/resources/views/livewire/auth/confirm-password.blade.php +++ b/resources/views/livewire/auth/confirm-password.blade.php @@ -1,4 +1,4 @@ - +
+
__('Appearance'), + ]; + } }; ?>
diff --git a/resources/views/livewire/settings/password.blade.php b/resources/views/livewire/settings/password.blade.php index c46919a..4ba6c9d 100644 --- a/resources/views/livewire/settings/password.blade.php +++ b/resources/views/livewire/settings/password.blade.php @@ -34,6 +34,13 @@ new class extends Component { $this->dispatch('password-updated'); } + + public function with(): array + { + return [ + 'title' => __('Password'), + ]; + } }; ?>
diff --git a/resources/views/livewire/settings/profile.blade.php b/resources/views/livewire/settings/profile.blade.php index d366f22..f8a7b10 100644 --- a/resources/views/livewire/settings/profile.blade.php +++ b/resources/views/livewire/settings/profile.blade.php @@ -67,6 +67,13 @@ new class extends Component { Session::flash('status', 'verification-link-sent'); } + + public function with(): array + { + return [ + 'title' => __('Profile'), + ]; + } }; ?>
diff --git a/resources/views/livewire/settings/two-factor.blade.php b/resources/views/livewire/settings/two-factor.blade.php index 40febe4..5a77e00 100644 --- a/resources/views/livewire/settings/two-factor.blade.php +++ b/resources/views/livewire/settings/two-factor.blade.php @@ -148,6 +148,13 @@ new class extends Component { } } + public function with(): array + { + return [ + 'title' => __('Two-Factor Authentication'), + ]; + } + /** * Get the current modal configuration state. */