Skip to content

Commit

Permalink
Quote Copy, Make Client a required field
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnyq committed May 11, 2024
1 parent d202c76 commit ff46284
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quote_copy_modal.php
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit ff46284

Please sign in to comment.