Skip to content

Commit

Permalink
Do not dehydrate password_confirmation when editing a customer's user…
Browse files Browse the repository at this point in the history
…'s password (#2073)
  • Loading branch information
xalunda authored Jan 24, 2025
1 parent cfa3db1 commit 35d9fef
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ public function getDefaultTable(Table $table): Table
__('lunarpanel::user.form.password_confirmation.label')
)
->password()
->minLength(8),
->minLength(8)
->dehydrated(false),
])->columns(2),

]),
Expand Down

0 comments on commit 35d9fef

Please sign in to comment.