replacecd Laravel title

This commit is contained in:
2025-10-31 13:02:23 +01:00
parent ec06d280ea
commit 8e98c151f8
6 changed files with 29 additions and 3 deletions
@@ -1,4 +1,4 @@
<x-layouts.auth>
<x-layouts.auth :title="__('Confirm Password')">
<div class="flex flex-col gap-6">
<x-auth-header
:title="__('Confirm password')"
@@ -1,4 +1,4 @@
<x-layouts.auth>
<x-layouts.auth :title="__('Two-Factor Authentication')">
<div class="flex flex-col gap-6">
<div
class="relative w-full h-auto"
@@ -3,7 +3,12 @@
use Livewire\Volt\Component;
new class extends Component {
//
public function with(): array
{
return [
'title' => __('Appearance'),
];
}
}; ?>
<section class="w-full">
@@ -34,6 +34,13 @@ new class extends Component {
$this->dispatch('password-updated');
}
public function with(): array
{
return [
'title' => __('Password'),
];
}
}; ?>
<section class="w-full">
@@ -67,6 +67,13 @@ new class extends Component {
Session::flash('status', 'verification-link-sent');
}
public function with(): array
{
return [
'title' => __('Profile'),
];
}
}; ?>
<section class="w-full">
@@ -148,6 +148,13 @@ new class extends Component {
}
}
public function with(): array
{
return [
'title' => __('Two-Factor Authentication'),
];
}
/**
* Get the current modal configuration state.
*/