@using Resources @model Weee.Areas.Admin.ViewModels.AccountUpdateProfileViewModel @{ ViewBag.Title = "Update Profile"; Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml"; }

@Resource.PersonalProfile

@if (ViewBag.SuccessMsg != null) { } @if (ViewBag.ErrorMsg != null) { }
@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true) @Html.HiddenFor(model => model.Id)
@Html.LabelFor(model => model.Name, new { @class = "control-label docs-control-label col-xs-3" })
@Html.TextBoxFor(model => model.Name, new { @class = "form-control" })
@Html.LabelFor(model => model.Email, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.Email, new { htmlAttributes = new { @class = "form-control" } })
}