Login only if user is active using Laravel
Laravel 5.4 / 5.5 Override the default login() function by placing this function in your LoginController: public function login(\Illuminate\Http\Request $request) { $this->validateLogin($request); // If the class is using the ThrottlesLogins trait, we can automatically throttle // the login attempts for this application. We’ll key this by the username and // the IP address of the … Read more