@extends('layouts.app') @section('title', 'Edit Thread: ' . $thread->title) @section('content')
Forums / {{ $board->name }} / {{ \Illuminate\Support\Str::limit($thread->title, 30) }} / Edit

Edit Thread

@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
@error('content')
{{ $message }}
@enderror
@if(Auth::user()->can('moderate forums'))

Moderation Options

is_pinned ? 'checked' : '' }}>
is_locked ? 'checked' : '' }}>
@endif
Cancel
@endsection