@Html.LabelFor(model => model.NOM, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.NOM, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.NOM, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRENOMS, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PRENOMS, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.PRENOMS, "", new { @class = "text-danger" })