- Implemented the dark photo-based theme.
Moved all images to public/assets/images. Added darkened photography across heroes, specials, menu cards, authentication, story, checkout, and footer. Replaced placeholder branding with the supplied logo. Preserved configurable menu item images. Updated desktop and mobile styling for readable cream/gold text.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<div class="detail-heading">
|
||||
<div>
|
||||
<a class="back-link" href="/admin/orders">← Back to orders</a>
|
||||
<a class="back-link" href="<?= e(url('/admin/orders')) ?>">← Back to orders</a>
|
||||
<div class="detail-title-row">
|
||||
<h2><?= e($order['order_number']) ?></h2>
|
||||
<span class="status-pill status-<?= e($order['status']) ?>"><?= e(ucfirst((string) $order['status'])) ?></span>
|
||||
@@ -51,7 +51,7 @@
|
||||
<aside>
|
||||
<section class="admin-panel">
|
||||
<div class="admin-panel-heading"><h2>Update Order</h2></div>
|
||||
<form class="form-stack" action="/admin/order" method="post">
|
||||
<form class="form-stack" action="<?= e(url('/admin/order')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<input type="hidden" name="order_id" value="<?= (int) $order['id'] ?>">
|
||||
<label>Status
|
||||
@@ -78,7 +78,7 @@
|
||||
</section>
|
||||
<section class="admin-panel">
|
||||
<div class="admin-panel-heading"><h2>Issue Refund</h2></div>
|
||||
<form class="form-stack" action="/admin/order/refund" method="post">
|
||||
<form class="form-stack" action="<?= e(url('/admin/order/refund')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<input type="hidden" name="order_id" value="<?= (int) $order['id'] ?>">
|
||||
<label>Amount
|
||||
|
||||
Reference in New Issue
Block a user