Skip to content

Commit

Permalink
Updated password min width
Browse files Browse the repository at this point in the history
  • Loading branch information
manelgavalda committed Apr 20, 2020
1 parent 13c999c commit f2fc8fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stubs/RegisterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected function validator(array $data)
'name' => 'required|max:255',
'username' => 'sometimes|required|max:255|unique:users',
'email' => 'required|email|max:255|unique:users',
'password' => 'required|min:6|confirmed',
'password' => 'required|min:8|confirmed',
'terms' => 'required',
]);
}
Expand Down

0 comments on commit f2fc8fe

Please sign in to comment.