Show image from url in the edit resource page form

In my form I have all the information I need to change but I want to show the image which the information pertains to. The image is from an outside url. I was able to show the image in the table. Wondering how I can show NOT edit the image from an url in the form. Its so the admins have context to what image they are adding information too.
Solution
Placeholder::make('my_image')->content(fn($record) => $record ? new HtmlString('<img src=" ' . $record->my_outside_image . '" />') : '')
Was this page helpful?