Hello guys, I'm new here, as well as to Laravel, and I am currently developing a system. And I have this difficulty that I don't know how to log in my currently registered user. If you can help, that is a big help for me.
And I have this difficulty that I don't know how to log in my currently registered user
What do you mean? They can't login via the login form, or you're trying to manually log them in via your own code? Are you using laravels built in auth system? You'll need to provide a little more info.
That typically has something to do with sessions not being generated. If you're using the file driver for sessions (the default setting), keep an eye on /storage/framework/sessions and see if new session files are being generated, and when they are being generated. It could be that that directory doesn't have write permissions for the web server user, so it can't write the session files.
So what actually happens when they go to yoursite.com/login, fill in their credentials and they attempt to login? Are there any errors? Is there anything useful in /storage/logs/laravel.log?