mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<x-card>
|
|
<x-slot name="title">{{ __("Update VHost") }}</x-slot>
|
|
|
|
<x-slot name="description">
|
|
{{ __("You can change your site's VHost configuration") }}
|
|
</x-slot>
|
|
|
|
<form
|
|
id="update-vhost"
|
|
hx-post="{{ route("servers.sites.settings.vhost", ["server" => $server, "site" => $site]) }}"
|
|
hx-swap="outerHTML"
|
|
hx-select="#update-vhost"
|
|
class="space-y-6"
|
|
hx-ext="disable-element"
|
|
hx-disable-element="#btn-update-vhost"
|
|
>
|
|
<div
|
|
hx-get="{{ route("servers.sites.settings.vhost", ["server" => $server, "site" => $site]) }}"
|
|
hx-trigger="load"
|
|
hx-target="#vhost-container"
|
|
hx-select="#vhost-container"
|
|
hx-swap="outerHTML"
|
|
>
|
|
<div id="vhost-container">
|
|
@php($vhost = old("vhost", session()->get("vhost") ?? "Loading..."))
|
|
<x-editor id="vhost" name="vhost" lang="nginx" :value="$vhost" />
|
|
</div>
|
|
@error("vhost")
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|
|
</form>
|
|
|
|
<x-slot name="actions">
|
|
<x-primary-button form="update-vhost" id="btn-update-vhost" hx-disable>
|
|
{{ __("Save") }}
|
|
</x-primary-button>
|
|
</x-slot>
|
|
</x-card>
|