Check if the current selected option is disabled.
Overrides FormField::isDisabled
public function isDisabled() : bool { if (parent::isDisabled() && 'select' === $this->type) { return true; } foreach ($this->options as $option) { if ($option['value'] == $this->value && $option['disabled']) { return true; } } return false; }