{{-- Header --}}

Edit Note

Editing "{{ $note->title }}"

{{-- Layout --}}
{{-- Left panel --}}
Note Info
{{ $note->title }}
@if($note->category)
{{ $note->category }}
@else
No category
@endif
Author {{ auth()->user()->name }}
Created {{ $note->created_at->format('M d, Y') }}
Updated {{ $note->updated_at->format('M d, Y') }}
{{ $note->word_count }} words
@if($note->is_favorite)
Favourite
@endif
{{-- Form --}}
@csrf @method('PUT')
{{-- Basic Info --}}
Basic Info
@error('title')
{{ $message }}
@enderror
@foreach($categories as $cat)
@error('category')
{{ $message }}
@enderror
{{-- Content --}}
Content Rich text supported
@error('content')
{{ $message }}
@enderror
{{-- Tags & Scheduling --}}
Tags & Scheduling Optional metadata
{{-- Tags --}}
@error('tags')
{{ $message }}
@enderror
{{-- Date + Time --}}
@error('date')
{{ $message }}
@enderror
@error('time')
{{ $message }}
@enderror
{{-- Favourite --}}
is_favorite) ? 'checked' : '' }}>
Cancel
{{-- /.cu-layout --}} {{-- Danger Zone --}}
Danger Zone
Permanently delete this note. This action cannot be undone.
@csrf @method('DELETE')