|
@@ -72,6 +72,13 @@
|
|
value="{{ $appointment && $appointment->title ? $appointment->title : '' }}"
|
|
value="{{ $appointment && $appointment->title ? $appointment->title : '' }}"
|
|
placeholder="(optional)">
|
|
placeholder="(optional)">
|
|
</div>
|
|
</div>
|
|
|
|
+ <div class="mb-3">
|
|
|
|
+ <label class="text-secondary mb-1">Description</label>
|
|
|
|
+ <textarea name="description" class="form-control form-control-sm"
|
|
|
|
+ type="text"
|
|
|
|
+ placeholder="(optional)"
|
|
|
|
+ >{{ $appointment && $appointment->description ? $appointment->description : '' }}</textarea>
|
|
|
|
+ </div>
|
|
<div class="mb-3">
|
|
<div class="mb-3">
|
|
<button class="btn btn-sm btn-primary d-block w-100 font-weight-bold apply-appt-button" disabled>
|
|
<button class="btn btn-sm btn-primary d-block w-100 font-weight-bold apply-appt-button" disabled>
|
|
@if($appointment && $appointment->uid)
|
|
@if($appointment && $appointment->uid)
|