following the tutorial on youtube by Philipp Reiner
On the part on putting image I copied the code
<?php foreach($page->children as $c): ?>
<div class="row">
<br><br>
<div class="col-lg-6 centered">
<img src="<?= $c->image->url; ?>" alt="<?= $c->image->description; ?>">
</div><!-- col-lg-6 -->
<div class="col-lg-6">
<h4><?php echo $c->title; ?></h4>
<?php echo $c->body; ?>
</div>
</div><!-- row -->
<br><br>
<hr>
<br><br>
<?php endforeach; ?>
But it doesn't show.. see attached