{!! html()->form('PUT', route('enabled.update', base64_encode($enabledBy->id)))->id('enabledByForm')->open() !!}
{!! html()->label('Enabled By Name *', 'enabled_by_name')->toHtml() !!} {!! html()->text('enabled_by_name')->class('form-control')->value($enabledBy->enabled_by_name)->placeholder('Enter Enabled By Name') !!}
{!! html()->label('Created By')->toHtml() !!} {!! html()->text('created_by')->class('form-control')->value($enabledBy->creator?->full_name ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Created At')->toHtml() !!} {!! html()->text('created_at')->class('form-control')->value($enabledBy->created_at?->format(config('constants.date_format')) ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Last Modified By')->toHtml() !!} {!! html()->text('modified_by')->class('form-control')->value($enabledBy->modifier?->full_name ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->label('Last Modified At')->toHtml() !!} {!! html()->text('updated_at')->class('form-control')->value($enabledBy->updated_at?->format(config('constants.date_format')) ?? 'N/A')->attribute('readonly', true) !!}
{!! html()->form()->close() !!}