@model MALDFGASSURANCE.Models.PHARMACIE @{ ViewBag.Title = "Create"; }

AJOUER UNE PHARMACIE

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NUMEROPHARMACIE, "VILLE", htmlAttributes: new { @class = "control-label col-md-2" }) @Html.EditorFor(model => model.NUMEROPHARMACIE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NUMEROPHARMACIE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.RAISONSOCIALE, htmlAttributes: new { @class = "control-label" }) @Html.EditorFor(model => model.RAISONSOCIALE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.RAISONSOCIALE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.CONTACT, htmlAttributes: new { @class = "control-label" }) @Html.EditorFor(model => model.CONTACT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.CONTACT, "", new { @class = "text-danger" })
}