|
@@ -1,11 +1,15 @@
|
|
|
<div moe relative class="">
|
|
|
<a href="#" start show class="text-sm font-weight-normal">{{ $label }}</a>
|
|
|
- <form url="/api/appointment/sendConfirmationRequestViaSms" right>
|
|
|
+ <form url="/api/appointment/sendConfirmationRequestViaEmailAndSms" right>
|
|
|
<input type="hidden" name="uid" value="{{ $appointment->uid }}">
|
|
|
<div class="mb-2">
|
|
|
<label for="" class="text-sm text-secondary mb-1">Cell Number</label>
|
|
|
<input type="text" class="form-control form-control-sm" name="toSmsNumber" value="{{$patient->cell_number}}" required>
|
|
|
</div>
|
|
|
+ <div class="mb-2">
|
|
|
+ <label for="" class="text-sm text-secondary mb-1">Email Address</label>
|
|
|
+ <input type="text" class="form-control form-control-sm" name="emailAddress" value="{{$patient->email_address}}" required>
|
|
|
+ </div>
|
|
|
<div>
|
|
|
<button submit class="btn btn-sm btn-primary mr-1">Send</button>
|
|
|
<button cancel class="btn btn-sm btn-default border">Cancel</button>
|