wip
This commit is contained in:
9
resources/views/livewire/project/edit.blade.php
Normal file
9
resources/views/livewire/project/edit.blade.php
Normal file
@@ -0,0 +1,9 @@
|
||||
<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>
|
||||
@@ -1,6 +1,6 @@
|
||||
<div>
|
||||
<h1>Create a new Application</h1>
|
||||
<div class="pt-2 pb-10 ">Deploy any public or private GIT repositories through a Deploy Key.</div>
|
||||
<div class="pt-2 pb-10">Deploy any public or private GIT repositories through a Deploy Key.</div>
|
||||
<h3 class="py-2">Select a Private Key</h3>
|
||||
@foreach ($private_keys as $key)
|
||||
@if ($private_key_id == $key->id)
|
||||
|
||||
Reference in New Issue
Block a user