+ @if (Gate::check('update', $team))
+ @livewire('update-belongs-to-datastore-form', ['model' => $team])
+
+ @endif
+
+ @livewire('teams.update-team-name-form', ['team' => $team])
+
+
+ @livewire('update-contact-info-form', ['model' => $team, 'readonly' => ! Gate::check('update', $team)])
+
+ @if (Gate::check('update', $team))
+
+ @livewire('update-logo-form', ['model' => $team])
+ @endif
+
+ @if (Gate::check('update', $team))
+
+ @livewire('update-landing-page-form', ['model' => $team])
+ @endif
+
+ @if (Gate::check('update', $team))
+
+ @livewire('update-model-domain-form', ['model' => $team, 'readonly' => ! Gate::check('update', $team)])
+ @endif
+
+ @livewire('teams.team-member-manager', ['team' => $team])
+
+ @if (Gate::check('delete', $team) && ! $team->personal_team)
+
+
+
+ @livewire('teams.delete-team-form', ['team' => $team])
+
+ @endif
+