You should be able to set the autocomplete="off"
attribute for your inputs.
$this->Form->control('name', ['autocomplete' => 'off']);
By specification, this should make browsers and addons (like Bitwarden) not autocomplete/autofill this.
You should be able to set the autocomplete="off"
attribute for your inputs.
$this->Form->control('name', ['autocomplete' => 'off']);
By specification, this should make browsers and addons (like Bitwarden) not autocomplete/autofill this.