Buyer Registration

Impormasyon ng Kumpanya
Distribution
Manufacturer
Service
Software
Impormasyon ng Contact
Seguridad
const nameInput = document.getElementById('buyerCompanyName'); const nameLabel = nameInput?.closest('.mb-3')?.querySelector('.form-label'); companyFields.forEach(f => f.style.display = isIndividual ? 'none' : ''); if (nameLabel) { nameLabel.textContent = isIndividual ? 'Full Name *' : 'Pangalan ng Kumpanya *'; nameInput.placeholder = isIndividual ? 'John Smith' : ''; } } toggleBuyerType();