Skip to content

Commit 1e0b9d8

Browse files
committed
fix: update autocomplete attribute in Profile.vue
The autocomplete attribute for the email input field was incorrectly set to "username". This change updates it to "email" to ensure proper browser autofill behavior and improve user experience. No breaking changes are introduced.
1 parent dbf7c0f commit 1e0b9d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/pages/settings/Profile.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const submit = () => {
6565
class="mt-1 block w-full"
6666
v-model="form.email"
6767
required
68-
autocomplete="username"
68+
autocomplete="email"
6969
placeholder="Email address"
7070
/>
7171
<InputError class="mt-2" :message="form.errors.email" />

0 commit comments

Comments
 (0)