@model GASArabianERP.Models.VisaMedicalVM @{ ViewBag.Title = "Create"; Layout = "~/Views/Shared/_Layout.cshtml"; } Visa MedicalTest @using (Html.BeginForm("Create", "VisaMedical", FormMethod.Post, new { })) { @Html.AntiForgeryToken() Select Applicant @Html.DropDownList("ApplicantID", Model.ApplicantListDDL, new { @class = "form-control select2" }) @Html.ValidationMessageFor(model => model.ApplicantID, "", new { @class = "text-danger" }) MedicalCheckup Location @Html.EditorFor(model => model.MedicalCheckupLocation, new { htmlAttributes = new { @class = "form-control", @placeholder = "MedicalCheckup Location" } }) @Html.ValidationMessageFor(m => m.MedicalCheckupLocation, "", new { @class = "text-danger" }) MedicalCheckup Date @Html.EditorFor(model => model.MedicalCheckupDate, new { htmlAttributes = new { @class = "form-control", @placeholder = "MedicalCheckup Date" } }) @Html.ValidationMessageFor(m => m.MedicalCheckupDate, "", new { @class = "text-danger" }) Medical Status @Html.DropDownList("MedicalStatus", Model.MedicalTestStatusGroupDDL, new { @class = "form-control select2", @onchange = "GetInterviewStatus();" }) @Html.ValidationMessageFor(model => model.MedicalStatus, "", new { @class = "text-danger" }) Remarks @Html.EditorFor(model => model.Remarks, new { htmlAttributes = new { @class = "form-control", @placeholder = "Remarks" } }) Save Cancel }