Auth\Controller\Accounts::create PHP Method

create() public method

public create ( )
    public function create()
    {
        $uid = null;
        $account = ["user" => "", "email" => "", "active" => 1, "group" => "admin", "i18n" => $this->app->helper("i18n")->locale];
        $languages = $this->getLanguages();
        $groups = $this->getGroups();
        return $this->render('auth:views/accounts/account.php', compact('account', 'uid', 'languages', 'groups'));
    }