@model Project_63135350.Models.Model_63135350.Category_63135350 @{ ViewBag.Title = "Thêm mới danh mục"; Layout = "~/Areas/Admin/Views/Shared/_Layout.cshtml"; } @section naviheader{ }

Thêm mới danh mục

Thông tin thêm mới danh mục

@using (Html.BeginForm("Add", "Category_63135350", FormMethod.Post, new { })) { @Html.AntiForgeryToken() @Html.ValidationSummary(true)
@Html.TextBoxFor(x => x.Title, new { @class = "form-control", @placeholder = "Tên danh mục" }) @Html.ValidationMessageFor(x => x.Title, null, new { @class = "text-danger" })
@Html.TextAreaFor(x => x.Description, new { @class = "form-control" })
@Html.TextBoxFor(x => x.Position, new { @class = "form-control", @Value = "1" })
Quay lại
}