mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
Laravel Jetstream install
This commit is contained in:
36
resources/views/teams/create-team-form.blade.php
Normal file
36
resources/views/teams/create-team-form.blade.php
Normal file
@@ -0,0 +1,36 @@
|
||||
<x-jet-form-section submit="createTeam">
|
||||
<x-slot name="title">
|
||||
{{ __('Team Details') }}
|
||||
</x-slot>
|
||||
|
||||
<x-slot name="description">
|
||||
{{ __('Create a new team to collaborate with others on projects.') }}
|
||||
</x-slot>
|
||||
|
||||
<x-slot name="form">
|
||||
<div class="col-span-6">
|
||||
<x-jet-label value="{{ __('Team Owner') }}" />
|
||||
|
||||
<div class="flex items-center mt-2">
|
||||
<img class="w-12 h-12 rounded-full object-cover" src="{{ $this->user->profile_photo_url }}" alt="{{ $this->user->name }}">
|
||||
|
||||
<div class="ml-4 leading-tight">
|
||||
<div>{{ $this->user->name }}</div>
|
||||
<div class="text-gray-700 text-sm">{{ $this->user->email }}</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-span-6 sm:col-span-4">
|
||||
<x-jet-label for="name" value="{{ __('Team Name') }}" />
|
||||
<x-jet-input id="name" type="text" class="mt-1 block w-full" wire:model.defer="state.name" autofocus />
|
||||
<x-jet-input-error for="name" class="mt-2" />
|
||||
</div>
|
||||
</x-slot>
|
||||
|
||||
<x-slot name="actions">
|
||||
<x-jet-button>
|
||||
{{ __('Create') }}
|
||||
</x-jet-button>
|
||||
</x-slot>
|
||||
</x-jet-form-section>
|
||||
Reference in New Issue
Block a user