{!! Form::open(['url' => action([\App\Http\Controllers\DocumentAndNoteController::class, 'update'], $document_note->id), 'id' => 'docus_notes_form', 'method' => 'put']) !!}

@lang('lang_v1.edit_note')

{!! Form::label('heading', __('lang_v1.heading') . ':*' )!!} {!! Form::text('heading', $document_note->heading, ['class' => 'form-control', 'required' ]) !!}
{!! Form::hidden('notable_id', $document_note->notable_id, ['class' => 'form-control']) !!} {!! Form::hidden('notable_type', $notable_type, ['class' => 'form-control']) !!}
{!! Form::label('description', __('lang_v1.description') . ':') !!} {!! Form::textarea('description', $document_note->description, ['class' => 'form-control ', 'id' => 'docs_note_description']); !!}
@if(Auth::user()->id == $document_note->created_by)
@endif
{!! Form::close() !!}