Files
ladill-care/resources/views/care/lab/catalog/edit.blade.php
T
isaaccladandCursor 6c9c742ed8
Deploy Ladill Care / deploy (push) Failing after 13s
Initial Ladill Care release.
Healthcare management app: patients, appointments, consultations, lab,
pharmacy inventory, billing, and reports at care.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 11:36:22 +00:00

9 lines
455 B
PHP

<x-app-layout title="Edit investigation">
<h1 class="text-xl font-semibold text-slate-900">Edit {{ $type->name }}</h1>
<form method="POST" action="{{ route('care.lab.catalog.update', $type) }}" class="mt-6 rounded-2xl border border-slate-200 bg-white p-6">
@csrf @method('PUT')
@include('care.lab.catalog._form')
<div class="mt-6"><button type="submit" class="btn-primary">Update</button></div>
</form>
</x-app-layout>