Deploy Ladill Care / deploy (push) Failing after 36s
Replace placeholder clinical forms with patient-level FDI charting, multi-visit plans, procedure-to-bill linking, imaging, reports, and demo seed data. Co-authored-by: Cursor <cursoragent@cursor.com>
26 lines
1.7 KiB
PHP
26 lines
1.7 KiB
PHP
<section class="rounded-2xl border border-slate-200 bg-white p-5">
|
|
<h3 class="text-sm font-semibold text-slate-900">Dental visit notes</h3>
|
|
<p class="mt-0.5 text-xs text-slate-500">Short clinical notes for this visit — not a GP SOAP form.</p>
|
|
|
|
<form method="POST" action="{{ route('care.specialty.dentistry.notes', $workspaceVisit) }}" class="mt-4 space-y-3">
|
|
@csrf
|
|
<div>
|
|
<label class="block text-xs font-medium text-slate-600">Chief complaint</label>
|
|
<textarea name="chief_complaint" rows="2" class="mt-1 w-full rounded-xl border border-slate-200 px-3 py-2 text-sm">{{ old('chief_complaint', $dentalVisitNote?->chief_complaint) }}</textarea>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-medium text-slate-600">Soft tissue</label>
|
|
<textarea name="soft_tissue" rows="2" class="mt-1 w-full rounded-xl border border-slate-200 px-3 py-2 text-sm">{{ old('soft_tissue', $dentalVisitNote?->soft_tissue) }}</textarea>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-medium text-slate-600">Occlusion / bite</label>
|
|
<textarea name="occlusion" rows="2" class="mt-1 w-full rounded-xl border border-slate-200 px-3 py-2 text-sm">{{ old('occlusion', $dentalVisitNote?->occlusion) }}</textarea>
|
|
</div>
|
|
<div>
|
|
<label class="block text-xs font-medium text-slate-600">Other notes</label>
|
|
<textarea name="notes" rows="3" class="mt-1 w-full rounded-xl border border-slate-200 px-3 py-2 text-sm">{{ old('notes', $dentalVisitNote?->notes) }}</textarea>
|
|
</div>
|
|
<button type="submit" class="btn-primary">Save notes</button>
|
|
</form>
|
|
</section>
|