true, 'autofocus' => true, 'disabled' => true, 'form' => true, 'type' => true, 'value' => true, ]; /** * Translatable attributes * * @var array */ protected $translatableAttributes = [ 'value' => true, ]; /** * Determine input type to use * * @throws Exception\DomainException */ protected function getType(ElementInterface $element): string { return 'reset'; } }