- 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,4 +1,4 @@
|
||||
<form class="admin-stack" action="/admin/settings" method="post">
|
||||
<form class="admin-stack" action="<?= e(url('/admin/settings')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<section class="admin-panel">
|
||||
<div class="admin-panel-heading"><div><span class="eyebrow">Public identity</span><h2>Business Information</h2></div></div>
|
||||
@@ -70,7 +70,7 @@
|
||||
<span class="status-dot <?= $tax['active'] ? 'is-on' : '' ?>"><?= $tax['active'] ? 'Active' : 'Disabled' ?></span>
|
||||
<span class="edit-label">Edit</span>
|
||||
</summary>
|
||||
<form class="inline-editor form-stack" action="/admin/tax/save" method="post">
|
||||
<form class="inline-editor form-stack" action="<?= e(url('/admin/tax/save')) ?>" method="post">
|
||||
<?= csrf_field() ?><input type="hidden" name="id" value="<?= (int) $tax['id'] ?>">
|
||||
<div class="form-grid">
|
||||
<label>Name<input type="text" name="name" value="<?= e($tax['name']) ?>" required></label>
|
||||
@@ -85,7 +85,7 @@
|
||||
</div>
|
||||
<details class="new-record">
|
||||
<summary>+ Add Tax Rate</summary>
|
||||
<form class="inline-editor form-stack" action="/admin/tax/save" method="post">
|
||||
<form class="inline-editor form-stack" action="<?= e(url('/admin/tax/save')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<div class="form-grid">
|
||||
<label>Name<input type="text" name="name" required></label>
|
||||
@@ -101,7 +101,7 @@
|
||||
<section class="admin-panel settings-followup">
|
||||
<div class="admin-panel-heading"><div><span class="eyebrow">Optional database mode</span><h2>MySQL / MariaDB Migration</h2></div><span class="role-badge"><?= e(strtoupper((string) $config->get('database.driver', 'sqlite'))) ?> active</span></div>
|
||||
<p class="muted">SQLite remains the default and requires no database server. This tool copies every application table and row into MySQL or MariaDB; switching drivers is optional.</p>
|
||||
<form class="form-stack" action="/admin/migrate/mysql" method="post">
|
||||
<form class="form-stack" action="<?= e(url('/admin/migrate/mysql')) ?>" method="post">
|
||||
<?= csrf_field() ?>
|
||||
<div class="form-grid form-grid-three">
|
||||
<label>Host<input type="text" value="<?= e($config->get('database.mysql_host')) ?>" disabled></label>
|
||||
|
||||
Reference in New Issue
Block a user