Please fill the form to add a new category.
+ +@using (Html.BeginForm()) +{ +Category name: | ++ @Html.TextBoxFor(Model=>Model.Name, new { @class="form-control"}) + | +
Parent category: | ++ @Html.DropDownListFor(Model => Model.ParentId, Model.Parents, new { @class = "form-control" }) + | +
+ | + |