@if(empty($user))
No user account found to attach notes to.
@else Customer dashboard notes: {{ $lead->customer_notes ?? 'empty' }} {!! Form::model($lead, ['route' => ['lead.update', $lead->id], 'id' => 'interested_form_'.$lead->id, 'class' => 'm-0' ]) !!} @method('PATCH') @if($lead->contact_consent) @else @endif {!! Form::close() !!} {!! Form::open( ['route' => ['note.store'], 'files' => true, 'id' => 'new_note_form' ]) !!} {!! Form::token() !!} {!! Form::hidden('author_id', auth()->user()->id) !!} {!! Form::hidden('user_id', $user->id) !!} @include('staff.notes.form')