@model HealthchoiceMVC.ViewModels.Admin_vm
@{
ViewBag.Title = "EditAdminPerson";
Layout = "~/Views/Shared/_Layout.cshtml";
}
Create / Edit Practice Admin / Manager
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.HiddenFor(model => model.AdminPerson.PersonId)
@Html.HiddenFor(m => m.AdminPerson.LinkedLogin)
@Html.HiddenFor(m => m.AdminPerson.CreatedDate)
}
@Html.ActionLink("Back to List", "IndexAdminPerson", "People", new { listType = "AdminPerson" }, htmlAttributes: new { title = "Manage AdminPersons" })
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
}