|
@@ -22,8 +22,8 @@
|
|
|
<input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
<input type="hidden" name="title" value="MCP Appointment">
|
|
|
<div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Pro</label>
|
|
|
- <select name="proUid" class="form-control form-control-sm">
|
|
|
+ <label class="text-secondary text-sm">Pro *</label>
|
|
|
+ <select name="proUid" class="form-control form-control-sm" required>
|
|
|
<option value=""> --select-- </option>
|
|
|
@foreach($pros as $iPro)
|
|
|
<option value="{{$iPro->uid}}" {{ $iPro->uid === $pro->uid ? 'selected' : '' }}>{{$iPro->displayName()}}</option>
|
|
@@ -31,17 +31,17 @@
|
|
|
</select>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Date</label>
|
|
|
+ <label class="text-secondary text-sm">Date *</label>
|
|
|
<input type="date" name="date" min="{{ date('Y-m-d') }}" value="{{ date('Y-m-d') }}"
|
|
|
- class="form-control form-control-sm">
|
|
|
+ class="form-control form-control-sm" required>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">Start Time</label>
|
|
|
- <input type="time" name="startTime" class="form-control form-control-sm">
|
|
|
+ <label class="text-secondary text-sm">Start Time *</label>
|
|
|
+ <input type="time" name="startTime" class="form-control form-control-sm" required>
|
|
|
</div>
|
|
|
<div class="mb-2">
|
|
|
- <label class="text-secondary text-sm">End Time</label>
|
|
|
- <input type="time" name="endTime" class="form-control form-control-sm">
|
|
|
+ <label class="text-secondary text-sm">End Time *</label>
|
|
|
+ <input type="time" name="endTime" class="form-control form-control-sm" required>
|
|
|
</div>
|
|
|
<div>
|
|
|
<button submit class="btn btn-sm btn-primary mr-1">Submit</button>
|