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