@using Resources @model Weee.Models.CertificationCompany @{ ViewBag.Title = "Update Company Info"; Layout = "~/Areas/Certification/Views/Shared/_CertificationLayout.cshtml"; } @using (Html.BeginForm("UpdateCompanyInfo", "Account", FormMethod.Post, new { @class = "form-horizontal" })) { @Html.AntiForgeryToken()

@Resource.EditCompanyInfo


@Html.LabelFor(m => m.Name, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.Name, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.Name, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.EnglishName, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.EnglishName, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.EnglishName, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.Address, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.Address, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.Address, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.VATNumber, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.VATNumber, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.VATNumber, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.CEOName, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.CEOName, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.CEOName, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.IndustryDescription, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.IndustryDescription, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.IndustryDescription, "", new { @class = "text-danger" })
@Html.LabelFor(m => m.Description, new { @class = "col-sm-4 control-label" })
@Html.EditorFor(m => m.Description, new { htmlAttributes = new { @class = "form-control" } }) @ViewBag.PasswordIsInvalid @Html.ValidationMessageFor(m => m.Description, "", new { @class = "text-danger" })
@Resource.StaticLabelGlobal_Cancel
}