{!! html()->form('PUT', route('plan-relevance.update', base64_encode($plan->id)))->id('planRelevanceForm')->open() !!}
{{-- plan-relevance --}}
{!! html()->label('Plan Relevance Name *', 'plan_relevance_name')->toHtml() !!} {!! html()->text('plan_relevance_name')->class('form-control')->value($plan->plan_relevance_name)->placeholder('Enter Plan Relevance Name') !!}
{{-- Metadata Fields --}}
{!! html()->label('Created By')->toHtml() !!} {!! html()->text('created_by')->class('form-control')->value($plan->creator?->full_name ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Created At')->toHtml() !!} {!! html()->text('created_at')->class('form-control')->value($plan->created_at?->format(config('constants.date_format')))->attribute('readonly', true) !!}
{!! html()->label('Last Modified By')->toHtml() !!} {!! html()->text('modified_by')->class('form-control')->value($plan->modifier?->full_name ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Last Modified At')->toHtml() !!} {!! html()->text('modified_at')->class('form-control')->value($plan->modified_at?->format(config('constants.date_format')))->attribute('readonly', true) !!}
{!! html()->form()->close() !!}