21 lines
		
	
	
		
			857 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			857 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <form wire:submit='createGitHubApp' class="flex flex-col w-full gap-2">
 | |
|     <div class="flex gap-2">
 | |
|         <x-forms.input id="name" label="Name" required />
 | |
|         <x-forms.input helper="If empty, your GitHub user will be used." id="organization" label="Organization" />
 | |
|     </div>
 | |
|     <div class="flex gap-2">
 | |
|         <x-forms.input id="html_url" label="HTML Url" required />
 | |
|         <x-forms.input id="api_url" label="API Url" required />
 | |
|     </div>
 | |
|     <div class="flex gap-2">
 | |
|         <x-forms.input id="custom_user" label="Custom Git User" required />
 | |
|         <x-forms.input id="custom_port" type="number" label="Custom Git Port" required />
 | |
|     </div>
 | |
|     @if (!isCloud())
 | |
|         <x-forms.checkbox id="is_system_wide" label="System Wide" />
 | |
|     @endif
 | |
|     <x-forms.button class="mt-4" type="submit">
 | |
|         Continue
 | |
|     </x-forms.button>
 | |
| </form>
 | 
