Question:
How do I place this mandatory field:
<p><h5><strong>Estado</strong></h5>
<p> <input type="radio" name="Estado" value="Concluído">Concluído
Answer:
Just add the required attribute to the input tag. It would be something like:
<input type="radio" name="Estado" value="Concluído" required>Concluído