diff options
-rw-r--r-- | Views/Bundle/Create.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Views/Bundle/Create.cshtml b/Views/Bundle/Create.cshtml index 4afc5e1..5197909 100644 --- a/Views/Bundle/Create.cshtml +++ b/Views/Bundle/Create.cshtml @@ -19,7 +19,7 @@ </div> <div class="form-group"> <label asp-for="Description" class="form-label">Descrition:</label> - <input asp-for="Description" class="form-control" /> + @Html.TextAreaFor(model => model.Description, new { @class="form-control", @rows = 2 }) </div> <div class="form-group"> <label asp-for="Price" class="form-label">Price:</label> |