@model ContactManagementAPI.Models.Contact @{ ViewData["Title"] = $"Edit Contact - {Model.FirstName} {Model.LastName}"; var groups = (ViewData["Groups"] as List) ?? new List(); var bankAccounts = (ViewData["BankAccounts"] as List) ?? new List { new ContactManagementAPI.Models.ContactBankAccount() }; var bankNames = (ViewData["BankNames"] as List) ?? new List(); }

Edit Contact

Back to Contacts
@Html.AntiForgeryToken()

Profile Photo

@if (!string.IsNullOrEmpty(Model.PhotoPath)) {

Current Photo:

Current photo
} Leave empty to keep current photo. Accepted formats: JPG, PNG, GIF, BMP (Max 5MB)

Basic Information

Contact Details

Identity Information

Bank Information

@foreach (var bankName in bankNames) { }
@for (var i = 0; i < bankAccounts.Count; i++) { }

Address Information

Additional Information

Cancel

Additional Features

Photo Albums: Manage multiple photos in the Photo Gallery

Documents: Attach and manage documents in Document Manager

@section Scripts { @{await Html.RenderPartialAsync("_ValidationScriptsPartial");} }