2023-09-22 09:23:49 +00:00
|
|
|
<form wire:submit.prevent='submit'>
|
2023-09-22 10:08:51 +00:00
|
|
|
<div class="flex items-center gap-2 pb-4">
|
2023-09-22 09:23:49 +00:00
|
|
|
@if ($database->human_name)
|
|
|
|
<h2>{{ Str::headline($database->human_name) }}</h2>
|
|
|
|
@else
|
|
|
|
<h2>{{ Str::headline($database->name) }}</h2>
|
|
|
|
@endif
|
|
|
|
<x-forms.button type="submit">Save</x-forms.button>
|
2023-09-22 10:08:51 +00:00
|
|
|
<a target="_blank" href="{{ $database->documentation() }}">Documentation <x-external-link /></a>
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
|
|
|
<div class="flex gap-2">
|
|
|
|
<x-forms.input label="Name" id="database.human_name" placeholder="Name"></x-forms.input>
|
2023-09-22 12:47:25 +00:00
|
|
|
<x-forms.input label="Description" id="database.description"></x-forms.input>
|
2023-09-22 09:23:49 +00:00
|
|
|
</div>
|
|
|
|
</form>
|