@await Html.PartialAsync("_CreateOrUpdate.Info", Model)
@if (Model.Id > 0)
{
@await Html.PartialAsync("_CreateOrUpdate.Orders", Model)
@await Html.PartialAsync("_CreateOrUpdate.Addresses", Model)
@await Html.PartialAsync("_CreateOrUpdate.CurrentShoppingCart", Model)
@await Html.PartialAsync("_CreateOrUpdate.ActivityLog", Model)
@await Html.PartialAsync("_CreateOrUpdate.Impersonate", Model)
@await Html.PartialAsync("_CreateOrUpdate.BackInStockSubscriptions", Model)
}
@if (Model.DisplayRewardPointsHistory)
{
@await Html.PartialAsync("_CreateOrUpdate.RewardPoints", Model)
}
@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.CustomerDetailsBlock, additionalData = Model })