Using the Remember me feature with Sentry in Laravel 4
问题 I'm trying to get a login form to 'remember' the user logging in and I just can't work out how to do it. Here's my controller public function getLogin() { // Return the view with the data return View::make('users.login'); } public function postLogin() { // Gather Sanitized Input $input = array( 'email' => Binput::get('email'), 'password' => Binput::get('password'), 'rememberMe' => Binput::get('rememberMe') ); // Set Validation Rules $rules = array ( 'email' => 'required|min:4|max:64|email',