BookStack\Http\Controllers\Auth\LoginController::getLogin PHP Method

getLogin() public method

Show the application login form.
public getLogin ( ) : Illuminate\Http\Response
return Illuminate\Http\Response
    public function getLogin()
    {
        $socialDrivers = $this->socialAuthService->getActiveDrivers();
        $authMethod = config('auth.method');
        return view('auth/login', ['socialDrivers' => $socialDrivers, 'authMethod' => $authMethod]);
    }