@model MALDFGASSURANCE.Models.MEDICAMENT @{ ViewBag.Title = "Edit"; }

MODIFIER MEDICAMENT

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.REFMEDICAMENT)
@Html.LabelFor(model => model.LIBELLE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.LIBELLE, new { htmlAttributes = new { @class = "form-control" } }) @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" } }) @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" } }) @Html.ValidationMessageFor(model => model.QUANTITE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PRIXUNITAITRE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.PRIXUNITAITRE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.PRIXUNITAITRE, "", new { @class = "text-danger" })
}