@model ParcelWeb.Core.ViewModels.ApplicationSettingsViewModel @{ ViewBag.Title = "Settings"; }

General Settings

@using (Html.BeginForm("Create", "AppSettings", FormMethod.Post, new { @class = "form form-horizontal", enctype = "multipart/form-data", role = "form", })) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.Settings.General.Id)


}
@section Scripts { @Scripts.Render("~/bundles/jqueryval") @Html.Raw(TempData["msg"]) }