Trello
{{ substr(auth()->user()->name, 0, 1) }}
← Back to Workspace
Edit Workspace
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any() && !$errors->has('delete_password'))
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Workspace Settings
@csrf @method('PUT')
@if($workspace->image_url)
Current icon
@endif

Upload a new image to replace the current one.

Cancel
Workspace Members
@csrf
@foreach($workspace->users as $member)
{{ strtoupper(substr($member->name, 0, 2)) }}
{{ $member->name }}
{{ $member->email }}
{{ $member->pivot->role }}
@if($member->pivot->role !== 'owner')
@csrf @method('DELETE')
@else Owner @endif
@endforeach
@if(auth()->user()->isSystemAdmin())
Danger Zone

Permanently delete this workspace and all its boards. This action cannot be undone.

@endif