Try your search with a different keyword or use * as a wildcard.
@model ApplyVendorModel
@{
Layout = "_ColumnsOne";
//title
NopHtml.AddTitleParts(T("PageTitle.Vendors.Apply").Text);
//page class
NopHtml.AppendPageCssClassParts("html-apply-vendor-page");
}
@T("PageTitle.Vendors.Apply")
@await Component.InvokeAsync(typeof(TopicBlockViewComponent), new { systemName = "ApplyVendor" })
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ApplyVendorTop, additionalData = Model })
@if (Model.DisableFormInput)
{
@Model.Result
}
else
{
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ApplyVendorBottom, additionalData = Model })