2023-04-25 09:01:56 +00:00
|
|
|
<x-layout>
|
2023-05-11 13:20:02 +00:00
|
|
|
@if ($type === 'public')
|
2023-08-08 09:51:36 +00:00
|
|
|
<livewire:project.new.public-git-repository :type="$type"/>
|
2023-05-11 13:20:02 +00:00
|
|
|
@elseif ($type === 'private-gh-app')
|
2023-08-08 09:51:36 +00:00
|
|
|
<livewire:project.new.github-private-repository :type="$type"/>
|
2023-05-11 13:20:02 +00:00
|
|
|
@elseif ($type === 'private-deploy-key')
|
2023-08-08 09:51:36 +00:00
|
|
|
<livewire:project.new.github-private-repository-deploy-key :type="$type"/>
|
2023-07-26 11:23:47 +00:00
|
|
|
@else
|
2023-08-08 09:51:36 +00:00
|
|
|
<livewire:project.new.select/>
|
2023-04-26 11:25:41 +00:00
|
|
|
@endif
|
2023-04-25 09:01:56 +00:00
|
|
|
</x-layout>
|