@if ($private_note->id)
{!! Form::model($private_note, ['route' => ['admin.private-notes.update', [$private_note]], 'method' => 'PUT']) !!}
@else
{!! Form::model($private_note, ['route' => ['admin.private-notes.store'], 'method' => 'POST']) !!}
@endif
{{ Form::label('title', __('Title'), ['class' => 'col-form-label']) }}
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => __('Title')]) !!}
{{-- status --}}
{{ Form::label('tag', __('Tag'), ['class' => 'col-form-label']) }}
{!! Form::select('tag', $tags, $private_note->tag, ['class' => 'form-select', 'data-kt-select2' => 'true']) !!}
{!! Form::label('description', 'Description', ['class' => 'col-form-label']) !!}
{!! Form::textarea('description', null, ['class' => 'form-control', 'rows' => 5]) !!}
{!! Form::close() !!}