Skip to content

Commit a67bfbb

Browse files
authored
fix: update autocomplete attribute in Profile.vue (#29)
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 70c929c commit a67bfbb

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)