Create board

×
{{ substr(auth()->user()->name, 0, 2) }}
{{ auth()->user()->name }}
{{ auth()->user()->email }}
Profile & Settings
@csrf
@csrf
Board title
Background
Mountains
Sunset
Forest
Road
Ocean
@error('name')
⚠ {{ $message }}
@enderror
⚠ Board title is required
@error('workspace_id')
⚠ {{ $message }}
@enderror
@if($workspaces->count() > 0) @php $selectedWorkspace = $workspaces->firstWhere('id', $defaultWorkspaceId) ?? $workspaces->first(); $remainingBoards = 10 - $selectedWorkspace->boards()->where('is_archived', false)->count(); @endphp

This Workspace has {{ $remainingBoards }} boards remaining.

Free Workspaces can only have 10 open boards.

@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif