lasthourcloud/resources/views/livewire/project/service/database.blade.php

14 lines
473 B
PHP
Raw Normal View History

2023-09-22 09:23:49 +00:00
<form wire:submit.prevent='submit'>
<div class="flex gap-2 pb-4">
@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>
</div>
<div class="flex gap-2">
<x-forms.input label="Name" id="database.human_name" placeholder="Name"></x-forms.input>
</div>
</form>