Hello! If I understand you right, and you whant to clear field with post, you can use the $field->clear(); method.
You can do it like this:
$password = new Password('password', [
'minlength' => 3,
'placeholder' => 'Password'
]);
$password->addValidator(new StringLength([
'messageMinimum' => 'Your password must be longer than 3 characters.',
'min' => 3
]));
$password->clear(); // This
Good luck!