File tree Expand file tree Collapse file tree 8 files changed +3
-28
lines changed Expand file tree Collapse file tree 8 files changed +3
-28
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,8 @@ public function confirmPassword(): void
45
45
<!-- Password -->
46
46
<flux:input
47
47
wire:model =" password"
48
- id =" password"
49
48
:label =" __('Password')"
50
49
type =" password"
51
- name =" password"
52
50
required
53
51
autocomplete =" new-password"
54
52
placeholder =" Password"
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ public function sendPasswordResetLink(): void
34
34
wire:model =" email"
35
35
:label =" __('Email Address')"
36
36
type =" email"
37
- name =" email"
38
37
required
39
38
autofocus
40
39
Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ protected function throttleKey(): string
85
85
wire:model =" email"
86
86
:label =" __('Email address')"
87
87
type =" email"
88
- name =" email"
89
88
required
90
89
autofocus
91
90
autocomplete =" email"
@@ -98,7 +97,6 @@ protected function throttleKey(): string
98
97
wire:model =" password"
99
98
:label =" __('Password')"
100
99
type =" password"
101
- name =" password"
102
100
required
103
101
autocomplete =" current-password"
104
102
placeholder =" Password"
Original file line number Diff line number Diff line change @@ -45,10 +45,8 @@ public function register(): void
45
45
<!-- Name -->
46
46
<flux:input
47
47
wire:model =" name"
48
- id =" name"
49
48
:label =" __('Name')"
50
49
type =" text"
51
- name =" name"
52
50
required
53
51
autofocus
54
52
autocomplete =" name"
@@ -58,10 +56,8 @@ public function register(): void
58
56
<!-- Email Address -->
59
57
<flux:input
60
58
wire:model =" email"
61
- id =" email"
62
59
:label =" __('Email address')"
63
60
type =" email"
64
- name =" email"
65
61
required
66
62
autocomplete =" email"
67
63
@@ -70,10 +66,8 @@ public function register(): void
70
66
<!-- Password -->
71
67
<flux:input
72
68
wire:model =" password"
73
- id =" password"
74
69
:label =" __('Password')"
75
70
type =" password"
76
- name =" password"
77
71
required
78
72
autocomplete =" new-password"
79
73
placeholder =" Password"
@@ -82,10 +76,8 @@ public function register(): void
82
76
<!-- Confirm Password -->
83
77
<flux:input
84
78
wire:model =" password_confirmation"
85
- id =" password_confirmation"
86
79
:label =" __('Confirm password')"
87
80
type =" password"
88
- name =" password_confirmation"
89
81
required
90
82
autocomplete =" new-password"
91
83
placeholder =" Confirm password"
Original file line number Diff line number Diff line change @@ -78,21 +78,17 @@ function ($user) {
78
78
<!-- Email Address -->
79
79
<flux:input
80
80
wire:model =" email"
81
- id =" email"
82
81
:label =" __('Email')"
83
82
type =" email"
84
- name =" email"
85
83
required
86
84
autocomplete =" email"
87
85
/>
88
86
89
87
<!-- Password -->
90
88
<flux:input
91
89
wire:model =" password"
92
- id =" password"
93
90
:label =" __('Password')"
94
91
type =" password"
95
- name =" password"
96
92
required
97
93
autocomplete =" new-password"
98
94
placeholder =" Password"
@@ -101,10 +97,8 @@ function ($user) {
101
97
<!-- Confirm Password -->
102
98
<flux:input
103
99
wire:model =" password_confirmation"
104
- id =" password_confirmation"
105
100
:label =" __('Confirm password')"
106
101
type =" password"
107
- name =" password_confirmation"
108
102
required
109
103
autocomplete =" new-password"
110
104
placeholder =" Confirm password"
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public function deleteUser(Logout $logout): void
44
44
</flux:subheading >
45
45
</div >
46
46
47
- <flux:input wire:model =" password" id = " password " :label =" __('Password')" type = " password " name =" password" />
47
+ <flux:input wire:model =" password" :label =" __('Password')" type =" password" />
48
48
49
49
<div class =" flex justify-end space-x-2" >
50
50
<flux:modal .close >
Original file line number Diff line number Diff line change @@ -44,28 +44,22 @@ public function updatePassword(): void
44
44
<form wire:submit =" updatePassword" class =" mt-6 space-y-6" >
45
45
<flux:input
46
46
wire:model =" current_password"
47
- id =" update_password_current_passwordpassword"
48
47
:label =" __('Current password')"
49
48
type =" password"
50
- name =" current_password"
51
49
required
52
50
autocomplete =" current-password"
53
51
/>
54
52
<flux:input
55
53
wire:model =" password"
56
- id =" update_password_password"
57
54
:label =" __('New password')"
58
55
type =" password"
59
- name =" password"
60
56
required
61
57
autocomplete =" new-password"
62
58
/>
63
59
<flux:input
64
60
wire:model =" password_confirmation"
65
- id =" update_password_password_confirmation"
66
61
:label =" __('Confirm Password')"
67
62
type =" password"
68
- name =" password_confirmation"
69
63
required
70
64
autocomplete =" new-password"
71
65
/>
Original file line number Diff line number Diff line change @@ -74,10 +74,10 @@ public function resendVerificationNotification(): void
74
74
75
75
<x-settings .layout :heading =" __('Profile')" :subheading =" __('Update your name and email address')" >
76
76
<form wire:submit =" updateProfileInformation" class =" my-6 w-full space-y-6" >
77
- <flux:input wire:model =" name" :label =" __('Name')" type =" text" name = " name " required autofocus autocomplete =" name" />
77
+ <flux:input wire:model =" name" :label =" __('Name')" type =" text" required autofocus autocomplete =" name" />
78
78
79
79
<div >
80
- <flux:input wire:model =" email" :label =" __('Email')" type =" email" name = " email " required autocomplete =" email" />
80
+ <flux:input wire:model =" email" :label =" __('Email')" type =" email" required autocomplete =" email" />
81
81
82
82
@if (auth ()-> user () instanceof \Illuminate\Contracts\Auth\ MustVerifyEmail &&! auth ()-> user ()-> hasVerifiedEmail () )
83
83
<div >
You can’t perform that action at this time.
0 commit comments