coolify/resources/views/livewire/team/form.blade.php

13 lines
405 B
PHP
Raw Normal View History

2023-06-16 15:01:58 +02:00
<form class="flex flex-col gap-2 pb-6" wire:submit.prevent='submit'>
<div class="flex items-end gap-2">
<h2>General</h2>
<x-forms.button type="submit">
Save
</x-forms.button>
</div>
<div class="flex gap-2">
<x-forms.input id="team.name" label="Name" required />
<x-forms.input id="team.description" label="Description" />
</div>
</form>