The Forms has the "clear" method to remove the content of the tag. But how can I do it without Forms?
$tag->clear();
// For example
$password = new Password('pass', [
'minlength' => 2,
'placeholder' => 'password'
]);
$password->clear();
May be, can I do it using Validation or Template (Volt)?