Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

Edit.cshtml

@model CustomerModel

@inject AdminAreaSettings adminAreaSettings

@{
    //page title
    ViewBag.PageTitle = T("Admin.Customers.Customers.EditCustomerDetails").Text;
    //active menu item (system name)
    NopHtml.SetActiveMenuItemSystemName("Customers list");
}

@T("Admin.Customers.Customers.EditCustomerDetails") - @Model.LastName @Model.FirstName @T("Admin.Customers.Customers.BackToList")

@if (Model.AllowSendingOfPrivateMessage) { } @if (Model.AllowSendingOfWelcomeMessage) { } @if (Model.AllowReSendingOfActivationMessage) { } @if (Model.GdprEnabled) { } @T("Admin.Common.Delete") @await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.CustomerDetailsButtons, additionalData = Model })
@await Html.PartialAsync("_CreateOrUpdate", Model)
@if (Model.GdprEnabled) { } @if (!string.IsNullOrEmpty(Model.MultiFactorAuthenticationProvider)) { } @*send email form*@ @*send PM form*@