{ "success": false, "message": "We can't find a user with that email address.", "errors": { "email": "We can't find a user with that email address." }}
401 Unauthorized - Invalid password
{ "success": false, "message": "These credentials do not match our records.", "errors": { "password": "These credentials do not match our records." }}
422 Validation Error - Invalid email format
{ "success": false, "message": "The given data was invalid.", "errors": { "email": [ "The email must be a valid email address." ] }}
422 Validation Error - Password too short
{ "success": false, "message": "The given data was invalid.", "errors": { "password": [ "The password must be at least 8 characters." ] }}