document.addEventListener('alpine:init', () => { Alpine.data('passphraseToggle', () => ({ show: false, toggle() { this.show = !this.show; } })); });