{!! html()->form('PUT', route('esamp-value-lever.update', base64_encode($esamp->id)))->id('esampValueLeverForm')->open() !!}
{{-- ESAMP Value Lever --}}
{!! html()->label('ESAMP Value Lever *', 'esamp_value_lever_name')->toHtml() !!} {!! html()->text('esamp_value_lever_name')->class('form-control')->value($esamp->esamp_value_lever_name)->placeholder('Enter ESAMP Value Lever') !!}
{{-- Metadata Fields --}}
{!! html()->label('Created By')->toHtml() !!} {!! html()->text('created_by')->class('form-control')->value($esamp->creator?->full_name ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Created At')->toHtml() !!} {!! html()->text('created_at')->class('form-control')->value($esamp->created_at?->format(config('constants.date_format')))->attribute('readonly', true) !!}
{!! html()->label('Last Modified By')->toHtml() !!} {!! html()->text('modified_by')->class('form-control')->value($esamp->modifier?->full_name ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Last Modified At')->toHtml() !!} {!! html()->text('updated_at')->class('form-control')->value($esamp->updated_at?->format(config('constants.date_format')))->attribute('readonly', true) !!}
{!! html()->form()->close() !!}