magic bar updates

This commit is contained in:
Andras Bacsai
2023-06-06 11:35:50 +02:00
parent a22ed4132a
commit 17d72089ce
5 changed files with 270 additions and 126 deletions

View File

@@ -9,8 +9,8 @@
<x-forms.input id="name" label="Name" required />
<x-forms.input id="network" label="Network" required />
<x-forms.select id="server_id" label="Select a server" required>
<option disabled>Select a server</option>
@foreach ($servers as $server)
<option disabled>Select a server</option>
<option value="{{ $server->id }}">{{ $server->name }}</option>
@endforeach
</x-forms.select>

View File

@@ -63,7 +63,7 @@
</div>
<x-forms.checkbox instantSave id="is_static" label="Is it a static site?"
helper="If your application is a static site or the final build assets should be served as a static site, enable this." />
<x-forms.button class="w-full mt-8" type="submit">
<x-forms.button type="submit">
Save New Application
</x-forms.button>
@endif

View File

@@ -29,7 +29,7 @@
</div>
<x-forms.checkbox instantSave id="is_static" label="Is it a static site?"
helper="If your application is a static site or the final build assets should be served as a static site, enable this." />
<x-forms.button class="mt-8" type="submit">
<x-forms.button type="submit">
Save New Application
</x-forms.button>
@endif