Job Creation Form - Copy this Html, Bootstrap Component to your project
<div class="row gy-5"> <div class="col-md-6 mb-4"> <label class="form-label text-muted fw-semibold">@L("Name")</label> <div class="fs-5 text-dark">@Model.Customer.Name</div> </div> <div class="col-md-6 mb-4"> <label class="form-label text-muted fw-semibold">@L("EmailAddress")</label> <div class="fs-5 text-dark">@Model.Customer.EmailAddress</div> </div> <div class="col-md-6 mb-4"> <label class="form-label text-muted fw-semibold">@L("Phone")</label> <div class="fs-5 text-dark">@Model.Customer.Phone</div> </div> <div class="col-md-6 mb-4"> <label class="form-label text-muted fw-semibold">@L("Website")</label> <div class="fs-5 text-dark">@Model.Customer.Website</div> </div> <div class="col-md-6 mb-4"> <label class="form-label text-muted fw-semibold">@L("TaxID")</label> <div class="fs-5 text-dark">@Model.Customer.TaxID</div> </div> </div>I am using this kind of design on the 1 side i need customer on the right side I neeed job name, description and address, below both there with notes text area
