/**
 * Method to get the radio button field input markup.
 *
 * @return  string  The field input markup.
 *
 * @since   1.7.0
 */
protected function getInput()
{
    if (empty($this->layout)) {
        throw new \UnexpectedValueException(sprintf('%s has no layout assigned.', $this->name));
    }
    return $this->getRenderer($this->layout)->render($this->getLayoutData());
}