@extends('layouts.app') @section('title', 'Edit — '.$speakingNote->title) @section('page-title', 'Edit Speaking Note') @push('scripts') @endpush @section('content')
@csrf @method('PUT') {{-- Card: Core fields --}}

Note Content

v{{ $speakingNote->version }} — saving creates v{{ $speakingNote->version + 1 }}
@error('title')

{{ $message }}

@enderror
{{-- Talking Points — large textarea --}}

Paste bullet points, numbered lists, or free-form paragraphs.

{{-- Card: Intelligence --}}

Supporting Intelligence

Separate tags with commas

{{-- Existing attachments --}} @if($speakingNote->attachments->isNotEmpty())

Current Attachments ({{ $speakingNote->attachments->count() }})

@foreach($speakingNote->attachments as $attachment) @include('speaking-notes.partials.attachment-row', [ 'attachment' => $attachment, 'downloadRoute' => 'speaking-notes.attachments.download', 'downloadParams' => [$speakingNote, $attachment], 'canDelete' => true, 'deleteRoute' => 'speaking-notes.attachments.destroy', 'deleteParams' => [$speakingNote, $attachment], ]) @endforeach
@endif {{-- Add new attachments --}}

Add Attachments (optional)

Cancel
@endsection