isProtected()) {
            $value = $this->protected;
            $disable = 'disabled="disabled"';
        } elseif ($echo && $this->error) {
            $value = $this->input;
        } else {
            $value = is_null($this->local) ? $this->default : $this->local;
        }
        $key = htmlspecialchars($this->key);
        $value = htmlspecialchars($value);
        $label = '';
        $input = '';
        return [$label, $input];
    }
}