14 lines
571 B
PHP
14 lines
571 B
PHP
<x-layout.app>
|
|
<x-slot:page_title>Create Room</x-slot:page_title>
|
|
<x-card.card class="mx-auto max-w-sm">
|
|
<x-card.heading>Create Room</x-card.heading>
|
|
<x-form.form method="POST" action="{{ route('admin.rooms.store') }}">
|
|
<x-form.field name="name" label_text="Room Name" />
|
|
<x-form.field name="description" label_text="Room Description" />
|
|
<x-form.footer class="mb-4">
|
|
<x-form.button>Save Room</x-form.button>
|
|
</x-form.footer>
|
|
</x-form.form>
|
|
</x-card.card>
|
|
</x-layout.app>
|