Try your search with a different keyword or use * as a wildcard.
@model EditForumTopicModel
@{
Layout = "_ColumnsOne";
NopHtml.AddTitleParts(T("Forum.PageTitle.TopicNew").Text);
}
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BoardsTopicCreateBefore, additionalData = Model })
<form asp-route="@NopRouteNames.Standard.TOPIC_CREATE" method="post">
@await Html.PartialAsync("_CreateUpdateTopic", Model)
</form>
@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.BoardsTopicCreateAfter, additionalData = Model })