BookStack\Http\Controllers\Auth\RegisterController::getRegister PHP Method

getRegister() public method

Show the application registration form.
public getRegister ( ) : Illuminate\Http\Response
return Illuminate\Http\Response
    public function getRegister()
    {
        $this->checkRegistrationAllowed();
        $socialDrivers = $this->socialAuthService->getActiveDrivers();
        return view('auth.register', ['socialDrivers' => $socialDrivers]);
    }