Files
isaaccladandCursor c5c2c02e47
Deploy Ladill Queue / deploy (push) Successful in 28s
Define btn-secondary to match btn-primary sizing and alignment.
Secondary actions were unstyled links beside pill buttons; add shared btn-group helper for form rows.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 21:59:14 +00:00

17 lines
869 B
PHP

<x-app-layout title="New queue">
<div class="mx-auto max-w-xl">
<h1 class="text-2xl font-semibold text-slate-900 dark:text-white">Create service queue</h1>
<p class="mt-2 text-sm text-slate-600 dark:text-slate-400">Define how customers join and flow through this service point.</p>
<form method="POST" action="{{ route('qms.queues.store') }}" class="mt-8 space-y-5 rounded-2xl border border-slate-200 bg-white p-6 dark:border-slate-700 dark:bg-slate-900">
@csrf
@include('qms.queues._form', ['queue' => null])
<div class="btn-group w-full">
<a href="{{ route('qms.queues.index') }}" class="btn-secondary flex-1 justify-center">Cancel</a>
<button type="submit" class="btn-primary flex-1">Create queue</button>
</div>
</form>
</div>
</x-app-layout>