@model SettingsViewModel @using (Html.BeginForm("Settings", "Home", FormMethod.Post)) { @Html.AntiForgeryToken()

Settings

@Html.LabelFor(m => m.VideoPath, new { @class = "form-label" }) @Html.TextBoxFor(m => m.VideoPath, new { @class = "form-control" }) @Html.ValidationMessageFor(m => m.VideoPath, "", new { @class = "text-danger" })
}