2023-06-22 07:33:26 +00:00
|
|
|
<div>
|
2024-06-07 09:01:10 +00:00
|
|
|
<x-slot:title>
|
2026-02-16 01:54:19 +00:00
|
|
|
{{ data_get_str($project, 'name')->limit(10) }} > Edit | MapleDeploy
|
2025-10-26 22:39:40 +00:00
|
|
|
</x-slot>
|
|
|
|
|
<form wire:submit='submit' class="flex flex-col pb-10">
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<h1>{{ data_get_str($project, 'name')->limit(15) }}</h1>
|
|
|
|
|
<div class="flex items-end gap-2">
|
|
|
|
|
<x-forms.button type="submit">Save</x-forms.button>
|
|
|
|
|
<livewire:project.delete-project :disabled="!$project->isEmpty()" :project_id="$project->id" />
|
|
|
|
|
</div>
|
2024-03-21 13:30:35 +00:00
|
|
|
</div>
|
2025-10-26 22:39:40 +00:00
|
|
|
<div class="pt-2 pb-10">Edit project details here.</div>
|
|
|
|
|
<div class="flex gap-2">
|
|
|
|
|
<x-forms.input label="Name" id="name" />
|
|
|
|
|
<x-forms.input label="Description" id="description" />
|
|
|
|
|
</div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|