@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.LabelFor(model => model.ID_TYPE_PRESCRIPTION, "TYPE PRESCRIPTION", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("ID_TYPE_PRESCRIPTION", null, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.ID_TYPE_PRESCRIPTION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.CODE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.CODE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.CODE, "", new { @class = "text-danger" })
@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.TYPE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.TYPE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.TYPE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ORDRE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.ORDRE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.ORDRE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.INDECES, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.INDECES, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.INDECES, "", new { @class = "text-danger" })
}