Try your search with a different keyword or use * as a wildcard.
@model CustomerSearchModel
@{
//page title
ViewBag.PageTitle = T("Admin.Customers.Customers").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("Customers list");
}
@{
const string hideSearchBlockAttributeName = "CustomerListPage.HideSearchBlock";
var hideSearchBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideSearchBlockAttributeName);
}
@*export selected (XML). We don't use GET approach because it's limited to 2K-4K chars and won't work for large number of entities*@
@*import products form*@
@*export selected (Excel). We don't use GET approach because it's limited to 2K-4K chars and won't work for large number of entities*@