Add Note
{!! Form::open(['route' => 'admin.add-notes', 'name' => 'createFormNotes', 'id' => 'createFormNotes']) !!}
{!! Form::label('notes', 'Notes', ['class' => 'form-label', 'for' => 'title']) !!}
*
{!! Form::textarea('notes', Input::old('notes', isset($task) ? $task->notes : ''), [
'id' => 'notes',
'class' => 'form-control',
'placeholder' => 'Notes',
'rows' => '6',
'tabindex' => '4',
]) !!}
{!! Form::hidden('contact_id',$contact_id) !!}
{!! Form::close() !!}