In the Wagtail admin panel, the person's image is not showing on the blog edit page

I have used a person as an author on the blog page, but when I open the blog edit page, I can only see the text, not the person's image. How can I display the image as well?

If you are missing an image from the template, the wagtail documentation here can help you. For example:

    {% load wagtailimages_tags %}
...

<!-- Display the image scaled to a width of 400 pixels: -->
{% image page.photo width-400 %}

<!-- Display it again, but this time as a square thumbnail: -->
{% image page.photo fill-80x80 %}
Back to Top