11 lines
470 B
Twig
11 lines
470 B
Twig
<div class="bg-white dark:bg-gray-800 shadow sm:rounded-lg">
|
|
<div class="px-4 py-5 sm:p-6">
|
|
<h3 class="text-base font-semibold leading-6 text-gray-900 dark:text-white">Create New Order</h3>
|
|
<div class="mt-2 max-w-xl text-sm text-gray-500 dark:text-gray-400">
|
|
<p>Fill out the form below to create a new food order.</p>
|
|
</div>
|
|
<div class="mt-5">
|
|
{{ include('_form.html.twig') }}
|
|
</div>
|
|
</div>
|
|
</div>
|