@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 Html.PartialAsync("_VendorAttributes", Model.VendorAttributes) @if (Model.DisplayCaptcha) { } @if (Model.TermsOfServiceEnabled) {
@if (Model.TermsOfServicePopup) { @T("Vendors.ApplyAccount.AcceptTermsOfService.Read") } else { @T("Vendors.ApplyAccount.AcceptTermsOfService.Read") }
}
} @await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ApplyVendorBottom, additionalData = Model })