Represents <input>
element of type "image" that is used to create graphical submit buttons. Documentation:
Widget:
use Yiisoft\Form\Field\Image;
echo Image::widget()
->src('btn.png')
->alt('Go');
Result will be:
<div>
<input type="image" src="btn.png" alt="Go">
</div>