added remarks for payments, expanded currency list
This commit is contained in:
@@ -75,15 +75,26 @@
|
||||
<label class="form-label text-muted small fw-bold">Support MS Teams</label>
|
||||
<select name="support_skype[]" id="edit_support_skype" class="form-select select2-tags" multiple="multiple"></select>
|
||||
</div>
|
||||
|
||||
<!-- Status & Meta -->
|
||||
<div class="col-md-4">
|
||||
<label class="form-label text-muted small fw-bold">Status</label>
|
||||
<input type="text" name="status" id="edit_status" class="form-control">
|
||||
<!-- <label class="form-label text-muted small fw-bold">Status</label> -->
|
||||
<!-- <input type="text" name="status" id="edit_status" class="form-control"> -->
|
||||
<label class="form-label text-secondary fw-semibold" style="font-size: 0.85rem;">Account Status *</label>
|
||||
<select class="form-select" id="edit_status" name="status" required>
|
||||
<option value="" selected disabled>--Select--</option>
|
||||
<option value="Live">Active / Live</option>
|
||||
<option value="Prospective">Prospective</option>
|
||||
<option value="Cancelled">Cancelled</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label class="form-label text-muted small fw-bold">Currency</label>
|
||||
<input type="text" name="currency" id="edit_currency" class="form-control">
|
||||
<select name="currency" id="edit_currency" class="form-select select2-currency" style="width: 100%;">
|
||||
<option value="">Select Currency</option>
|
||||
@foreach($currencies as $currency)
|
||||
<option value="{{ $currency->currency_code }}">{{ $currency->currency_code }} ({{ $currency->name }})</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label class="form-label text-muted small fw-bold">Country</label>
|
||||
@@ -91,6 +102,17 @@
|
||||
<option value="">Select Country</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<!-- Add Account Manager Field here -->
|
||||
<div class="col-md-6 mt-3">
|
||||
<label class="form-label text-muted small fw-bold">Account Manager</label>
|
||||
<select name="account_manager" id="edit_account_manager" class="form-select w-100">
|
||||
<option value="">Select Manager</option>
|
||||
@foreach($staff_members as $id => $name)
|
||||
<option value="{{ $id }}">{{ $name }}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer bg-light">
|
||||
|
||||
Reference in New Issue
Block a user