mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
16 lines
426 B
PHP
16 lines
426 B
PHP
<div>
|
|
<x-input-label for="repository" :value="__('Repository')" />
|
|
<x-text-input
|
|
value="{{ old('repository') }}"
|
|
id="repository"
|
|
name="repository"
|
|
type="text"
|
|
class="mt-1 block w-full"
|
|
autocomplete="repository"
|
|
placeholder="organization/repository"
|
|
/>
|
|
@error("repository")
|
|
<x-input-error class="mt-2" :messages="$message" />
|
|
@enderror
|
|
</div>
|