@if (createForm.controls.name.errors?.['minlength']) {
Le nom doit contenir au moins {{ createForm.controls.name.errors!['minlength'].requiredLength }} caractères.
}
@if (createForm.controls.name.errors?.['maxlength']) {
Le nom ne peut dépasser {{ createForm.controls.name.errors!['maxlength'].requiredLength }} caractères.
}
@if (createForm.controls.description.errors?.['maxlength']) {
La description ne peut dépasser {{ createForm.controls.description.errors!['maxlength'].requiredLength }} caractères.
}
{{ selectedFilename }}
@for (ingredient of ingredientEntries; track ingredient.idIngredient) {