As I mentioned in my post in my Laravel 4.1 application I have the "Remember me" option.
When I connect in chrome with "Remember me" checked and close the browser and open it, it's working, even when I don't check it!
But with Firefox it work perfectly. When I check "Remember me", close then open the browser I'm still connected.
When I don't check it and connect, close then open the browser it return me to the login form with error message.
I don't understand why it's not working in chrome.
else if (Auth::attempt($credentials, $remember)) {
return Redirect::intended('/');
}