Deploy Ladill Mini / deploy (push) Successful in 23s
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>
16 lines
809 B
PHP
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">← 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>
|