Try your search with a different keyword or use * as a wildcard.
@model ProductSearchModel
@{
//page title
ViewBag.PageTitle = T("Admin.Catalog.Products.BulkEdit").Text;
//active menu item (system name)
NopHtml.SetActiveMenuItemSystemName("Products");
}
@{
const string hideSearchBlockAttributeName = "ProductBulkEditPage.HideSearchBlock";
var hideSearchBlock = await genericAttributeService.GetAttributeAsync(await workContext.GetCurrentCustomerAsync(), hideSearchBlockAttributeName);
}
@if (Model.LicenseCheckModel.BlockPages != true)
{
}