vito/resources/views/sites/settings.blade.php
Saeed Vaziry 1bf3c94358
add auto-deployment (#71)
add update source-control to site-settings
2023-10-29 22:20:15 +01:00

17 lines
618 B
PHP

<x-site-layout :site="$site">
<x-slot name="pageTitle">{{ __("Settings") }}</x-slot>
<livewire:sites.change-php-version :site="$site"/>
<livewire:sites.update-source-control-provider :site="$site"/>
<x-card>
<x-slot name="title">{{ __("Delete Site") }}</x-slot>
<x-slot name="description">{{ __("Permanently delete the site from server") }}</x-slot>
<p>{{ __("Once your site is deleted, all of its files will be deleted from the server.") }}</p>
<div class="mt-5">
<livewire:sites.delete-site :site="$site"/>
</div>
</x-card>
</x-site-layout>