Files
ladill-pos/resources/views/pos/products/create.blade.php
T
isaaccladandCursor e5d2b84388
Deploy Ladill Mini / deploy (push) Successful in 23s
Add Ladill POS v1 — register, Pay checkout, and commerce links.
Staff-facing counter register at pos.ladill.com with catalog cart, cash and
MoMo/card checkout via Ladill Pay, CRM timeline/import, invoice prefill, and
Merchant catalog import.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-23 22:52:24 +00:00

16 lines
809 B
PHP

<x-app-layout title="New product">
<div class="mx-auto max-w-lg">
<a href="{{ route('pos.products.index') }}" class="text-sm text-slate-500 hover:text-slate-700">&larr; Products</a>
<h1 class="mt-2 text-lg font-semibold text-slate-900">Add product</h1>
<form method="POST" action="{{ route('pos.products.store') }}" class="mt-5 space-y-4 rounded-2xl border border-slate-200 bg-white p-6">
@csrf
@include('pos.products._form')
<div class="flex justify-end gap-3 pt-2">
<a href="{{ route('pos.products.index') }}" class="rounded-xl px-4 py-2 text-sm text-slate-600 hover:bg-slate-100">Cancel</a>
<button type="submit" class="btn-primary">Save</button>
</div>
</form>
</div>
</x-app-layout>