This commit is contained in:
Saeed Vaziry
2024-03-24 09:56:34 +01:00
committed by GitHub
parent 884f18db63
commit 4d051330d6
1055 changed files with 14493 additions and 20278 deletions

View File

@ -0,0 +1,14 @@
<div>
<x-input-label for="php_version" :value="__('PHP Version')" />
<x-select-input id="php_version" name="php_version" class="mt-1 w-full">
<option value="" selected>{{ __("Select") }}</option>
@foreach ($server->installedPHPVersions() as $version)
<option value="{{ $version }}" @if($version == old('php_version')) selected @endif>
PHP {{ $version }}
</option>
@endforeach
</x-select-input>
@error("php_version")
<x-input-error class="mt-2" :messages="$message" />
@enderror
</div>