Przeglądaj źródła

fixed appointment alert

= 3 lat temu
rodzic
commit
bd69de47f5

+ 5 - 1
resources/views/app/patient/partials/appointment-request-confirmation.blade.php

@@ -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>