@model Sevomin.Models.AvalinViewModel @{ ViewBag.Title = "ویرایش پروفایل"; } @Html.Partial("PostResult", ViewBag.Result as Sevomin.Models.PostResultViewModel) @using (Html.BeginForm("ProfileAvalin", "Account", FormMethod.Post, new { role = "form", @class = "assess-inputs", enctype = "multipart/form-data" })) {
@Html.LabelFor(model => model.CompanyPhoneNumber) @Html.TextBoxFor(model => model.CompanyPhoneNumber, new { @class = "form-control" })
@Html.LabelFor(model => model.EMail) @Html.TextBoxFor(model => model.EMail, new { @class = "form-control" })
@Html.LabelFor(model => model.Address) @Html.TextAreaFor(model => model.Address, new { @class = "form-control" })
@Html.LabelFor(model => model.CompanyName) @Html.TextBoxFor(model => model.CompanyName, new { @class = "form-control" })
@Html.LabelFor(model => model.NationalId) @Html.TextBoxFor(model => model.NationalId, new { @class = "form-control" })
@Html.LabelFor(model => model.RegisterId) @Html.TextBoxFor(model => model.RegisterId, new { @class = "form-control" })
}