@toastr_css
Patient Details
@csrf
@if ($errors->has('fname'))
{{ $errors->first('fname') }}
@endif
@if ($errors->has('lname'))
{{ $errors->first('lname') }}
@endif
@if ($errors->has('dob'))
{{ $errors->first('dob') }}
@endif
@if ($errors->has('city'))
{{ $errors->first('city') }}
@endif
@if ($errors->has('state'))
{{ $errors->first('state') }}
@endif
@if ($errors->has('zipcode'))
{{ $errors->first('zipcode') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('gender'))
{{ $errors->first('gender') }}
@endif
@if ($errors->has('ethnicity'))
{{ $errors->first('ethnicity') }}
@endif
@if ($errors->has('address_one'))
{{ $errors->first('address_one') }}
@endif
@if ($errors->has('address_two'))
{{ $errors->first('address_two') }}
@endif

Documents

@if ($user->documents != null) @foreach ($user->documents as $document) @endforeach @endif
{{-- @if ($errors->has('buccal_swab'))
{{ $errors->first('buccal_swab') }}
@endif --}}
{{-- --}}

COVID 19 SARS-COV-2 by RT-PCR

Covid-19 DX Code

Contact with and (suspected) expousre to other viral communicable diseases

  • Only to be used if actual expousre with someone confirmed to have COVID-19
@if ($errors->has('Z20828'))
{{ $errors->first('Z20828') }}
@endif
@php if ($user->barcode != null) { $barCodeCreated = $user->barcode->created_at->format('Y-m-d h:i'); $barCodeExpire = \Carbon\Carbon::parse($barCodeCreated)->addDay(7)->format('Y-m-d h:i'); $today = \Carbon\Carbon::now()->format('Y-m-d h:i'); } else { $barCodeExpire = ''; } @endphp
@if (!empty($barCodeExpire) && $today >= $barCodeExpire)
@else @if ($user->barcode != null)

You can not change barcode till {{$barCodeExpire}} UTC (+00:00)

@else
@endif @endif
@if ($errors->has('performing_lab'))
{{ $errors->first('performing_lab') }}
@endif

Previous Barcodes

@forelse ($barcodes as $barcode)
@empty

No Previous Record Exists

@endforelse
{{-- @jquery --}} @toastr_js @toastr_render