From 8455625bae252b99cb6c4c18c4d7fe68ab491b84 Mon Sep 17 00:00:00 2001 From: Lukas Kahwe Smith Date: Tue, 7 Feb 2023 11:44:47 +0100 Subject: [PATCH] add note that remember me requires a password fixes https://github.com/laravel/framework/issues/45945#issuecomment-1419170465 --- features/remember-session.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/features/remember-session.md b/features/remember-session.md index 68cc1d7..41ee03b 100644 --- a/features/remember-session.md +++ b/features/remember-session.md @@ -21,3 +21,5 @@ To turn on this feature add the following to applications `socialstream.php` con Features::rememberSession(), ], ``` + +{% hint style="warning" %} This feature requires that a password (a random one if user does not set a password) is set on the user.{% endhint %}