-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add password visibility toggle to login and registration forms * Update password visibility button position * Remove password confirmation field from registration form * Removed backend needs for password_confirmation, bugfix
- Loading branch information
Showing
5 changed files
with
21 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ public function testUserCanSignupWithProperCredentials(): void | |
"name" => "Test", | ||
"email" => "[email protected]", | ||
"password" => "123456789", | ||
"password_confirmation" => "123456789", | ||
]; | ||
|
||
$this->post(uri: "/register", data: $user); | ||
|
@@ -29,7 +28,6 @@ public function testUserCannotBeCreatedWithInvalidName(): void | |
"name" => Str::random(256), | ||
"email" => "[email protected]", | ||
"password" => "123456789", | ||
"password_confirmation" => "123456789", | ||
]); | ||
|
||
$response->assertSessionHasErrors(["name"]); | ||
|