@page @using EnotaryoPH.Web.Pages.Shared.Components.NotaryoSteps @model UploadIdentificationModel @{ } @section Head { } Notaryo Steps @await Component.InvokeAsync("NotaryoSteps", new { NotaryoSteps = new List() { new NotaryoStep { Name = "Upload Identification", Step = 1, IsActive = true }, new NotaryoStep { Name = "Take Selfie", Step = 2 }, new NotaryoStep { Name = "Upload Document", Step = 3 }, new NotaryoStep { Name = "Choose Notary", Step = 4 }, }}) @if (Model.ExistingIdentificationDocuments.Count > 0) { Upload a new Identification Document Use any of the existing Identification Documents } else { } @Html.EditorFor(m => m.NewIdentificationDocument) @if (Model.ExistingIdentificationDocuments.Count > 0) { Existing Identification Documents Identification Document Type Expiration @foreach(var id in Model.ExistingIdentificationDocuments) { @id.IdentificationType @id.ExpirationDate.Value.ToShortDateString() Delete } } NEXT @section Scripts { }