@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
Please fix the following errors:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
📌

Board Settings

Configure your collaborative board

@csrf @method('PUT')

Guidelines and instructions that will be shown to students

Board Settings

Allow Anonymous Posts

Let students post without revealing their identity

Moderation Required

Posts must be approved before appearing on the board

Cancel
👁️

Preview

See how this board will appear to students

📌

{{ $board->title }}

Collaborative Board

@if($board->allow_anonymous) Anonymous posts allowed @endif @if($board->moderation_required) • Moderation enabled @endif
@if($board->description)

{{ $board->description }}

@endif @if($board->instructions)

Instructions:

{{ $board->instructions }}

@endif
0 posts
Add Post

Total Posts

{{ $board->posts()->count() }}

Approved Posts

{{ $board->posts()->where('is_approved', true)->count() }}

Pending Review

{{ $board->posts()->where('is_approved', false)->count() }}