How can you ensure that the form validates that the entered name is at least 3 characters long?
<form action="procesar.php" method="POST">
<label for="nombre">Name:</label>
<input type="text" id="nombre" name="nombre" required>
<button type="submit">Send</button>
</form>