removed trim strings middleware from affecting passwords and password confirmations as those aren't used for login

This commit is contained in:
2020-05-09 10:50:03 -05:00
parent 6506c11ec1
commit 6ef087b841

View File

@@ -12,7 +12,6 @@ class TrimStrings extends Middleware
* @var array * @var array
*/ */
protected $except = [ protected $except = [
'password', //
'password_confirmation',
]; ];
} }