@extends('layouts.app') @section('content')
Members of team "{{$team->name}}" Back
@foreach($team->users AS $user) @endforeach
Name Action
{{$user->name}} @if(auth()->user()->isOwnerOfTeam($team)) @if(auth()->user()->getKey() !== $user->getKey())
{!! csrf_field() !!}
@endif @endif
Pending invitations
@foreach($team->invites AS $invite) @endforeach
E-Mail Action
{{$invite->email}} Resend invite
Invite to team "{{$team->name}}"
{!! csrf_field() !!}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection