@model MALDFGASSURANCE.Models.ETABLISSEMENT @{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_Layout.cshtml"; }

AJOUER UN ETABLISSEMENT PARTENAIRE

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ID_ETABLISSEMENT, "REFERENCE DE L'ETABLISSEMENT", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.ID_ETABLISSEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ID_ETABLISSEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.NOM_ETABLISSEMENT, "RAISON SOCIALE", htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.NOM_ETABLISSEMENT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.NOM_ETABLISSEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ID_TYPE_ETABLISSEMENT, "TYPE D'ETABLISSEMENT", htmlAttributes: new { @class = "control-label " }) @Html.DropDownList("ID_TYPE_ETABLISSEMENT", null, htmlAttributes: new { @class = "form-control ", @id = "kt_select2_7" }) @Html.ValidationMessageFor(model => model.ID_TYPE_ETABLISSEMENT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ADRESSE, htmlAttributes: new { @class = "control-label " }) @Html.EditorFor(model => model.ADRESSE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ADRESSE, "", 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" })
}