@using (Html.BeginForm("Edit", "MEDICAMENTS", FormMethod.Post, new { enctype = "multipart/form-data" }))
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.HiddenFor(model => model.REFMEDICAMENT, htmlAttributes: new { @id = "REFERENCE1" })
@Html.LabelFor(model => model.LIBELLE,"NOM DU MEDICAMENT", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.LIBELLE, new { htmlAttributes = new { @class = "form-control", @id = "LIBELLE1", @value = "" } })
@Html.ValidationMessageFor(model => model.LIBELLE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.POSOLOGIE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.POSOLOGIE, new { htmlAttributes = new { @class = "form-control", @id = "POSOLOGIE1", @value = "" } })
@Html.ValidationMessageFor(model => model.POSOLOGIE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.QUANTITE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.QUANTITE, new { htmlAttributes = new { @class = "form-control", @id = "QUANTITE1", @value = "" } })
@Html.ValidationMessageFor(model => model.QUANTITE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIXUNITAITRE,"PRIX UNITAIRE", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PRIXUNITAITRE, new { htmlAttributes = new { @class = "form-control", @id = "PRIXUNITAIRE1", @value = "" } })
@Html.ValidationMessageFor(model => model.PRIXUNITAITRE, "", new { @class = "text-danger" })
}