@extends('adminlte::page') @section('title', config('app.name') . ' | ' . __('Teams')) @section('content_header')

{{config('app.name')}} / {{__('Teams')}}

@stop @section('js') @stop @section('content') @if($team->openJoin == false)
@csrf
{{ __('This user will receive an email notification asking them to join your team.') }}
@endif

{{ __('Team members and pending invites will appear here.') }}

@if (!$team->users->isEmpty()) @foreach ($team->users as $teammate) @endforeach
# {{ __('Name') }} {{ __('Roles') }} {{ __('Status') }} {{ __('Actions') }}
{{ $teammate->id }} {{ $teammate->name }} @foreach ($teammate->roles as $teammate_role) {{ $teammate_role->name }} @endforeach @if ($teammate->isOwnerOfTeam($team)) {{__('Team Owner')}} @else {{__('Team Member')}} @endif
@else
{{__("There don't seem to be any teammates here!")}}

{{ __('Start inviting some people and grow your team.') }}

@endif
Edit illustration

{{ __('Edit Team') }}

@csrf @method('PATCH')
{{ __('Markdown supported') }}
openJoin == 1) ? 'checked' : '' }} name="joinType" id="jointype" data-toggle="toggle" data-on="{{ __('Public Team') }}" data-off="{{__('Private')}}" data-onstyle="success" data-offstyle="danger" data-width="100">

{{ __('Team Vacancies') }}

{{ __('The vacancies you select determine what applications your team members see. All applications under the vacancies you choose will be displayed.') }}
@csrf @method('PATCH')
@stop