diff --git a/stubs/default/resources/views/auth/login.blade.php b/stubs/default/resources/views/auth/login.blade.php
index 3d6c76977..94d385687 100644
--- a/stubs/default/resources/views/auth/login.blade.php
+++ b/stubs/default/resources/views/auth/login.blade.php
@@ -8,7 +8,7 @@
-
+
diff --git a/stubs/default/resources/views/auth/register.blade.php b/stubs/default/resources/views/auth/register.blade.php
index 3e154f7bc..759792ba9 100644
--- a/stubs/default/resources/views/auth/register.blade.php
+++ b/stubs/default/resources/views/auth/register.blade.php
@@ -5,14 +5,14 @@
-
+
-
+
@@ -34,7 +34,7 @@
+ name="password_confirmation" required autocomplete="new-password" />
diff --git a/stubs/default/resources/views/auth/reset-password.blade.php b/stubs/default/resources/views/auth/reset-password.blade.php
index 5b415b0bc..a6494ccaa 100644
--- a/stubs/default/resources/views/auth/reset-password.blade.php
+++ b/stubs/default/resources/views/auth/reset-password.blade.php
@@ -8,14 +8,14 @@
-
+
-
+
@@ -25,7 +25,7 @@
+ name="password_confirmation" required autocomplete="new-password" />
diff --git a/stubs/default/resources/views/profile/partials/update-profile-information-form.blade.php b/stubs/default/resources/views/profile/partials/update-profile-information-form.blade.php
index 4e6bbb418..7273fff39 100644
--- a/stubs/default/resources/views/profile/partials/update-profile-information-form.blade.php
+++ b/stubs/default/resources/views/profile/partials/update-profile-information-form.blade.php
@@ -25,7 +25,7 @@
-
+
@if ($user instanceof \Illuminate\Contracts\Auth\MustVerifyEmail && ! $user->hasVerifiedEmail())
diff --git a/stubs/inertia-react/resources/js/Pages/Auth/Register.jsx b/stubs/inertia-react/resources/js/Pages/Auth/Register.jsx
index ddc975550..c09e3fa9f 100644
--- a/stubs/inertia-react/resources/js/Pages/Auth/Register.jsx
+++ b/stubs/inertia-react/resources/js/Pages/Auth/Register.jsx
@@ -95,6 +95,7 @@ export default function Register() {
name="password_confirmation"
value={data.password_confirmation}
className="mt-1 block w-full"
+ autoComplete="new-password"
handleChange={onHandleChange}
required
/>
diff --git a/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx b/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx
index 088d9afae..b5b646a59 100644
--- a/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx
+++ b/stubs/inertia-react/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.jsx
@@ -56,7 +56,7 @@ export default function UpdateProfileInformation({ mustVerifyEmail, status, clas
value={data.email}
handleChange={(e) => setData('email', e.target.value)}
required
- autoComplete="email"
+ autoComplete="username"
/>
diff --git a/stubs/inertia-vue/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue b/stubs/inertia-vue/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue
index 41372b3de..330fe7380 100644
--- a/stubs/inertia-vue/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue
+++ b/stubs/inertia-vue/resources/js/Pages/Profile/Partials/UpdateProfileInformationForm.vue
@@ -54,7 +54,7 @@ const form = useForm({
class="mt-1 block w-full"
v-model="form.email"
required
- autocomplete="email"
+ autocomplete="username"
/>