Quote Copy, Make Client a required field

This commit is contained in:
johnnyq 2024-05-10 21:57:22 -04:00
parent d202c7684a
commit ff4628465c
1 changed files with 2 additions and 2 deletions

View File

@ -12,12 +12,12 @@
<div class="modal-body bg-white">
<div class="form-group">
<label>Client</label>
<label>Client <strong class="text-danger">*</strong></label>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-users"></i></span>
</div>
<select class="form-control select2" name="client">
<select class="form-control select2" name="client" required>
<?php
$sql_client_select = mysqli_query($mysqli, "SELECT * FROM clients WHERE client_archived_at IS NULL ORDER BY client_name ASC");