Can laravel's Authentication remember a user without password?

Viewed 634

It's just a lunch order system for my company, and we can login in without password, but I try to

Auth::attempt(['name' => $name, 'email' => $email], true)

And it require password

Can I change this config?Or can it remember user in other way?

2 Answers
Related