@push('head-script')
@endpush
×
@lang('app.updateNotesDetails')
{!! Form::open(['id'=>'updateNotes','class'=>'ajax-form','method'=>'PUT']) !!}
@lang('modules.notes.notesTitle')
@lang('modules.notes.notesType')
notes_type == '0') checked @endif class="radio-button" id="public" checked="" value="0">
@lang('modules.notes.public')
notes_type == '1') checked @endif class="radio-button" id="private" value="1">
@lang('modules.notes.private')
@lang('modules.notes.selectMember')
@forelse($employees as $employee)
id, $clientMembers)) selected @endif value="{{ $employee->id }}">{{ ucwords($employee->name) }}
@empty
@lang('messages.noCategoryAdded')
@endforelse
is_client_show == 1) checked @endif type="checkbox" >
@lang('modules.notes.showClient')
ask_password == 1) checked @endif type="checkbox" >
@lang('modules.notes.askReenterPassword')
@lang('modules.notes.notesDetails')
{{ $notes->note_details ?? '' }}
Save
{!! Form::close() !!}
@push('footer-script')