We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2bb6e commit 77adfcdCopy full SHA for 77adfcd
docs/authentication.md
@@ -146,11 +146,11 @@ $credentials = [
146
$validCreds = auth()->check($credentials);
147
148
if (! $validCreds->isOK()) {
149
- return redirect()->back()->with('error', $loginAttempt->reason());
+ return redirect()->back()->with('error', $validCreds->reason());
150
}
151
```
152
153
-The Result instance returned contains the logged in user as `extraInfo()`.
+The Result instance returned contains the valid user as `extraInfo()`.
154
155
### loggedIn()
156
0 commit comments