lasthourcloud/resources/views/livewire/project/edit.blade.php
Andras Bacsai cfe9aed42a wip
2023-06-22 09:33:26 +02:00

10 lines
384 B
PHP

<div>
<h1>{{ data_get($project, 'name') }}</h1>
<div class="pt-2 pb-10">Edit project details</div>
<form wire:submit.prevent='submit' class="flex items-end gap-2 ">
<x-forms.input label="Name" id="project.name" />
<x-forms.input label="Description" id="project.description" />
<x-forms.button type="submit">Save</x-forms.button>
</form>
</div>