setData('name', e.target.value)}
placeholder="e.g., Construction of FGEN-PPA Access Road"
disabled={isLocked}
className="h-10 text-sm border-slate-200"
/>
{errors.name &&
{errors.name}
}
{/* Project Classification Multi-Tag Checkbox Group */}
|
Select one or more construction classification tags applicable to this project (minimum 1 required):
{activeClassificationOptions.map((item, idx) => {
const isChecked = Array.isArray(data.classifications) && data.classifications.includes(item.name);
return (
);
})}
{errors.classifications &&
{errors.classifications}
}
{/* Project Type & Scope Selection */}
{/* 1.2 Project Location & 1.3 Client */}
setData('location', e.target.value)}
placeholder="e.g., Bolbok, Batangas City"
disabled={isLocked}
className="h-10 text-sm border-slate-200"
/>
{errors.location &&
{errors.location}
}
setData('client_name', e.target.value)}
placeholder="e.g., First Gen Corporation"
disabled={isLocked}
className="h-10 text-sm border-slate-200"
/>
{errors.client_name &&
{errors.client_name}
}
{/* 1.4 Main Contractor — Hard-coded */}
setData('contract_duration', e.target.value)}
className="max-w-[160px] h-10 text-sm border-slate-200 bg-slate-50/50 font-semibold"
placeholder="0"
disabled={isLocked}
/>
calendar days
{errors.contract_duration &&
{errors.contract_duration}
}