I am using the laravel/ui package as you can see here: https://laravel.com/docs/7.x/authentication#included-routing
I want to make the user choose whether he wants to be remembered or not when he is logging in. However, the default setting seems to be that every user is remembered. According to the documentation the LoginController is shipping with remember me functionality: https://laravel.com/docs/7.x/authentication#remembering-users
My question is how to change or override the LoginController so that the user can decide via checkbox whether he should be remembered or not.
Thanks in advance! Hope you can help me, I am quite new to Laravel