Represents <button>
element of type "submit" that is rendered as button for submitting a form. Documentation:
Widget:
use Yiisoft\Form\Field\SubmitButton;
echo SubmitButton::widget()->content('Go!');
Result will be:
<div>
<button type="submit">Go!</button>
</div>