Hello i am new with processwire, i cant have complete url of good images. now i can have only image file name. {$agent->title} are OK but {$agent->images} src='image_name.jpg' and {$agent->description} are empty
<?php
if($page->id == 1)
$agents = $pages->get("/agents/")->children("limit=4");
echo "<div class='row'>" ;
foreach($agents as $agent) {
echo "<div class='large-3 columns'>" .
"<img class='img-circle' src='{$agent->images}' alt='{$agent->description}'>" .
"<h4>{$agent->title}</h4>" .
"<p>Bacon ipsum dolor sit amet nulla ham qui sint exercitation eiusmod commodo, chuck duis velit. Aute in reprehenderit, dolore aliqua non est magna in labore pig pork biltong. Eiusmod swine spare ribs reprehenderit culpa. Boudin aliqua adipisicing rump corned beef.</p>" .
"</div>";
}
?>