@model ContactManagementAPI.Models.Contact @{ ViewData["Title"] = "Create New Contact"; 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(); }

Create New Contact

@Html.AntiForgeryToken()

Profile 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

Note

Photo Albums: After creating the contact, you can add multiple photos to their album from the contact details page.

Documents: You can attach documents (PDF, Word, Excel, etc.) from the contact details page after creation.

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