File tree 8 files changed +16
-16
lines changed
inertia/resources/js/Pages/Profile
livewire/resources/views/profile
8 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 11
11
<template #form >
12
12
<div class =" col-span-6 sm:col-span-4" >
13
13
<jet-label for =" current_password" value =" Current Password" />
14
- <jet-input id =" current_password" type =" password" class =" mt-1 block w-full" v-model =" form.current_password" ref =" current_password" />
14
+ <jet-input id =" current_password" type =" password" class =" mt-1 block w-full" v-model =" form.current_password" ref =" current_password" autocomplete = " current-password " />
15
15
<jet-input-error :message =" form.error('current_password')" class =" mt-2" />
16
16
</div >
17
17
18
18
<div class =" col-span-6 sm:col-span-4" >
19
19
<jet-label for =" password" value =" New Password" />
20
- <jet-input id =" password" type =" password" class =" mt-1 block w-full" v-model =" form.password" />
20
+ <jet-input id =" password" type =" password" class =" mt-1 block w-full" v-model =" form.password" autocomplete = " new-password " />
21
21
<jet-input-error :message =" form.error('password')" class =" mt-2" />
22
22
</div >
23
23
24
24
<div class =" col-span-6 sm:col-span-4" >
25
25
<jet-label for =" password_confirmation" value =" Confirm Password" />
26
- <jet-input id =" password_confirmation" type =" password" class =" mt-1 block w-full" v-model =" form.password_confirmation" />
26
+ <jet-input id =" password_confirmation" type =" password" class =" mt-1 block w-full" v-model =" form.password_confirmation" autocomplete = " new-password " />
27
27
<jet-input-error :message =" form.error('password_confirmation')" class =" mt-2" />
28
28
</div >
29
29
</template >
Original file line number Diff line number Diff line change 40
40
<!-- Name -->
41
41
<div class =" col-span-6 sm:col-span-4" >
42
42
<jet-label for =" name" value =" Name" />
43
- <jet-input id =" name" type =" text" class =" mt-1 block w-full" v-model =" form.name" />
43
+ <jet-input id =" name" type =" text" class =" mt-1 block w-full" v-model =" form.name" autocomplete = " name " />
44
44
<jet-input-error :message =" form.error('name')" class =" mt-2" />
45
45
</div >
46
46
Original file line number Diff line number Diff line change 10
10
<x-slot name =" form" >
11
11
<div class =" col-span-6 sm:col-span-4" >
12
12
<x-jet-label for =" current_password" value =" Current Password" />
13
- <x-jet-input id =" current_password" type =" password" class =" mt-1 block w-full" wire:model =" state.current_password" />
13
+ <x-jet-input id =" current_password" type =" password" class =" mt-1 block w-full" wire:model =" state.current_password" autocomplete = " current-password " />
14
14
<x-jet-input-error for =" current_password" class =" mt-2" />
15
15
</div >
16
16
17
17
<div class =" col-span-6 sm:col-span-4" >
18
18
<x-jet-label for =" password" value =" New Password" />
19
- <x-jet-input id =" password" type =" password" class =" mt-1 block w-full" wire:model =" state.password" />
19
+ <x-jet-input id =" password" type =" password" class =" mt-1 block w-full" wire:model =" state.password" autocomplete = " new-password " />
20
20
<x-jet-input-error for =" password" class =" mt-2" />
21
21
</div >
22
22
23
23
<div class =" col-span-6 sm:col-span-4" >
24
24
<x-jet-label for =" password_confirmation" value =" Confirm Password" />
25
- <x-jet-input id =" password_confirmation" type =" password" class =" mt-1 block w-full" wire:model =" state.password_confirmation" />
25
+ <x-jet-input id =" password_confirmation" type =" password" class =" mt-1 block w-full" wire:model =" state.password_confirmation" autocomplete = " new-password " />
26
26
<x-jet-input-error for =" password_confirmation" class =" mt-2" />
27
27
</div >
28
28
</x-slot >
Original file line number Diff line number Diff line change 49
49
<!-- Name -->
50
50
<div class =" col-span-6 sm:col-span-4" >
51
51
<x-jet-label for =" name" value =" Name" />
52
- <x-jet-input id =" name" type =" text" class =" mt-1 block w-full" wire:model =" state.name" />
52
+ <x-jet-input id =" name" type =" text" class =" mt-1 block w-full" wire:model =" state.name" autocomplete = " name " />
53
53
<x-jet-input-error for =" name" class =" mt-2" />
54
54
</div >
55
55
Original file line number Diff line number Diff line change 22
22
23
23
<div class =" mt-4" >
24
24
<x-jet-label value =" Password" />
25
- <x-jet-input class =" block mt-1 w-full" type =" password" name =" password" required />
25
+ <x-jet-input class =" block mt-1 w-full" type =" password" name =" password" required autocomplete = " current-password " />
26
26
</div >
27
27
28
28
<div class =" block mt-4" >
Original file line number Diff line number Diff line change 11
11
12
12
<div >
13
13
<x-jet-label value =" Name" />
14
- <x-jet-input class =" block mt-1 w-full" type =" text" name =" name" :value =" old('name')" required autofocus />
14
+ <x-jet-input class =" block mt-1 w-full" type =" text" name =" name" :value =" old('name')" required autofocus autocomplete = " name " />
15
15
</div >
16
16
17
17
<div class =" mt-4" >
21
21
22
22
<div class =" mt-4" >
23
23
<x-jet-label value =" Password" />
24
- <x-jet-input class =" block mt-1 w-full" type =" password" name =" password" required />
24
+ <x-jet-input class =" block mt-1 w-full" type =" password" name =" password" required autocomplete = " new-password " />
25
25
</div >
26
26
27
27
<div class =" mt-4" >
28
28
<x-jet-label value =" Confirm Password" />
29
- <x-jet-input class =" block mt-1 w-full" type =" password" name =" password_confirmation" required />
29
+ <x-jet-input class =" block mt-1 w-full" type =" password" name =" password_confirmation" required autocomplete = " new-password " />
30
30
</div >
31
31
32
32
<div class =" flex items-center justify-end mt-4" >
Original file line number Diff line number Diff line change 18
18
19
19
<div class =" mt-4" >
20
20
<x-jet-label value =" Password" />
21
- <x-jet-input class =" block mt-1 w-full" type =" password" name =" password" required />
21
+ <x-jet-input class =" block mt-1 w-full" type =" password" name =" password" required autocomplete = " new-password " />
22
22
</div >
23
23
24
24
<div class =" mt-4" >
25
25
<x-jet-label value =" Confirm Password" />
26
- <x-jet-input class =" block mt-1 w-full" type =" password" name =" password_confirmation" required />
26
+ <x-jet-input class =" block mt-1 w-full" type =" password" name =" password_confirmation" required autocomplete = " new-password " />
27
27
</div >
28
28
29
29
<div class =" flex items-center justify-end mt-4" >
Original file line number Diff line number Diff line change 20
20
21
21
<div class =" mt-4" x-show =" ! recovery" >
22
22
<x-jet-label value =" Code" />
23
- <x-jet-input class =" block mt-1 w-full" type =" text" name =" code" autofocus x-ref =" code" />
23
+ <x-jet-input class =" block mt-1 w-full" type =" text" name =" code" autofocus x-ref =" code" autocomplete = " one-time-code " />
24
24
</div >
25
25
26
26
<div class =" mt-4" x-show =" recovery" >
27
27
<x-jet-label value =" Recovery Code" />
28
- <x-jet-input class =" block mt-1 w-full" type =" text" name =" recovery_code" x-ref =" recovery_code" />
28
+ <x-jet-input class =" block mt-1 w-full" type =" text" name =" recovery_code" x-ref =" recovery_code" autocomplete = " one-time-code " />
29
29
</div >
30
30
31
31
<div class =" flex items-center justify-end mt-4" >
You can’t perform that action at this time.
0 commit comments