feat: add searchable dropdowns to reprint_receipt and winnertotal forms
This commit is contained in:
@@ -20,7 +20,12 @@
|
||||
{{ csrf_field() }}
|
||||
<div class="col-md-6">
|
||||
<label for="reprintbiddernum" class="form-label">Bidder Number</label>
|
||||
<input type="text" name="reprintbiddernum" id="reprintbiddernum" class="form-control" required>
|
||||
<select name="reprintbiddernum" id="reprintbiddernum" class="form-select" required>
|
||||
<option value="">Select Bidder</option>
|
||||
@foreach($bidders as $bidder)
|
||||
<option value="{{ $bidder->idbidders }}">{{ $bidder->bidder_assigned_number }} - {{ $bidder->bidder_fname }} {{ $bidder->bidder_lname }}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-12">
|
||||
<button type="submit" class="btn btn-primary">Reprint Receipt</button>
|
||||
@@ -33,5 +38,6 @@
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
@include('components.tomselect')
|
||||
@push('js')
|
||||
@endpush
|
||||
|
||||
Reference in New Issue
Block a user