Регистрация на купувач

Информация за фирмата
Distribution
Manufacturer
Service
Software
Информация за контакт
Сигурност
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 *' : 'Име на фирмата *'; nameInput.placeholder = isIndividual ? 'John Smith' : ''; } } toggleBuyerType();