|
@@ -17,9 +17,11 @@
|
|
|
redir="/patients/view/{{$patient->uid}}/notes/view/[data]"
|
|
|
class="mcp-theme-1">
|
|
|
<input type="hidden" name="clientUid" value="{{$patient->uid}}">
|
|
|
- <input type="hidden" name="effectiveDateEST" value="{{date("Y-m-d")}}">
|
|
|
- <input type="hidden" name="effectiveTime" value="{{date("h:i")}}">
|
|
|
<input type="hidden" name="title" id="note-create-title" value="">
|
|
|
+ <div class="form-group mb-2">
|
|
|
+ <label for="" class="text-secondary text-sm mb-1">Effective Date *</label>
|
|
|
+ <input name="effectiveDateEST" class="form-control" value="{{date("Y-m-d")}}">
|
|
|
+ </div>
|
|
|
<div class="form-group mb-2">
|
|
|
<label for="" class="text-secondary text-sm mb-1">Pro *</label>
|
|
|
<select name="hcpProUid" class="form-control" provider-search required data-pro-uid="{{$pro->is_hcp ? $pro->uid : ''}}">
|
|
@@ -72,10 +74,14 @@
|
|
|
@if($pro->isDefaultNA())
|
|
|
<input type="hidden" name="naProUid" value="{{$pro->uid}}">
|
|
|
@endif
|
|
|
- <input type="hidden" name="effectiveDate" value="{{date("Y-m-d")}}">
|
|
|
- <input type="hidden" name="effectiveTime" value="{{date("h:i")}}">
|
|
|
+
|
|
|
<input type="hidden" class="form-control form-control-sm" placeholder="title"
|
|
|
name="title" id="note-create-title" value="{{count($proVisitTemplates) === 1 ? $proVisitTemplates->first()->title : 'Note'}}">
|
|
|
+
|
|
|
+ <div class="form-group mb-2">
|
|
|
+ <label for="" class="text-secondary text-sm mb-1">Effective Date *</label>
|
|
|
+ <input type="date" name="effectiveDate" class="form-control" value="{{date("Y-m-d")}}">
|
|
|
+ </div>
|
|
|
<div class="form-group">
|
|
|
<label for="" class="text-secondary text-sm mb-1">HCP Pro *</label>
|
|
|
<select name="hcpProUid" class="form-control" provider-search required data-pro-uid="{{$pro->is_hcp ? $pro->uid : ''}}">
|