|
@@ -13,6 +13,15 @@
|
|
|
</a>
|
|
|
<form url="/api/accountInvite/create" class="mcp-theme-1">
|
|
|
<input type="hidden" name="forClientUid" value="{{$patient->uid}}">
|
|
|
+ <div class="mb-2">
|
|
|
+ <label>Domain:</label>
|
|
|
+ <select name="domain" class="form-control input-sm" required>
|
|
|
+ <option value=""></option>
|
|
|
+ @foreach($domains as $domain)
|
|
|
+ <option value="{{ $domain['key'] }}">{{ $domain['title'] }}</option>
|
|
|
+ @endforeach
|
|
|
+ </select>
|
|
|
+ </div>
|
|
|
<div class="mb-2">
|
|
|
<label class="text-secondary text-sm">Email Address</label>
|
|
|
<input type="email" name="toEmailAddress" value="{{ $patient->email_address }}"
|
|
@@ -140,6 +149,7 @@
|
|
|
<tr class="bg-light">
|
|
|
<th class="px-2 text-secondary border-bottom-0">Created At</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">Name</th>
|
|
|
+ <th class="px-2 text-secondary border-bottom-0">Domain</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">Email</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">Cell Number</th>
|
|
|
<th class="px-2 text-secondary border-bottom-0">Status</th>
|
|
@@ -156,6 +166,7 @@
|
|
|
@endif
|
|
|
</td>
|
|
|
<td class="px-2">{{ $accountInvite->first_name }} {{ $accountInvite->last_name }}</pre></td>
|
|
|
+ <td class="px-2">{{ $accountInvite->domain }}</pre></td>
|
|
|
<td class="px-2">{{ $accountInvite->to_email_address }}</td>
|
|
|
<td class="px-2">{{ $accountInvite->cell_number }}</td>
|
|
|
<td class="px-2">{{ $accountInvite->status }} <span class="text-sm text-secondary">(Updated: {{friendlier_date_time($accountInvite->status_updated_at)}})</span>
|