Webiant Logo Webiant Logo
  1. No results found.

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

Create.cshtml

@model CustomerModel

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

@T("Admin.Customers.Customers.AddNew") @T("Admin.Customers.Customers.BackToList")

@await Component.InvokeAsync(typeof(AdminWidgetViewComponent), new { widgetZone = AdminWidgetZones.CustomerDetailsButtons, additionalData = Model })
@await Html.PartialAsync("_CreateOrUpdate", Model)