Skip to content

Commit

Permalink
fixed #590
Browse files Browse the repository at this point in the history
  • Loading branch information
denisdulici committed Nov 4, 2018
1 parent 9709899 commit bd97f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Auth/Login.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function create()
public function store()
{
// Attempt to login
if (!auth()->attempt(request(['email', 'password']))) {
if (!auth()->attempt(request(['email', 'password']), request('remember', false))) {
flash(trans('auth.failed'))->error();

return back();
Expand Down

0 comments on commit bd97f7e

Please sign in to comment.