@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.LabelFor(model => model.TOTAL, htmlAttributes: new { @class = "control-label" })
@Html.EditorFor(model => model.TOTAL, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.TOTAL, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.TOTALREMBOURSER, htmlAttributes: new { @class = "control-label" })
@Html.EditorFor(model => model.TOTALREMBOURSER, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.TOTALREMBOURSER, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NOMPAIEMENT, "DETAILS DU PAIEMENT", htmlAttributes: new { @class = "control-label" })
@Html.TextAreaFor(model => model.NOMPAIEMENT, new { @class = "form-control", @rows = 5 })
@Html.ValidationMessageFor(model => model.NOMPAIEMENT, "", new { @class = "text-danger" })
}