Php Help needed Mate!

Humanhelper

BANNED
Joined
Aug 22, 2019
Messages
43
Reaction score
19
This code seems to be having syntax error in line 3,I have tried my best of knowledge,no avail, I need someone to resolve the error and send it back thanks.



<!--testimonial section start-->
<section class="section-padding testimonial-section">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="section-title text-center">
<h2 class="color-text">What People Say</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<div class="slider-activation">
@foreach($testimonial as $tes)
<div class="testimonial-carousel">
<div class="single-testimonial-wrapper">
<div class="single-testimonial-top">
<div class="testimoanial-top-text">
<div class="profile-pic">
<img src="{{ asset('assets/images') }}/{{ $tes->image }}" class="img-circle img-responsive" alt="Client's Profile Pic">
</div>
<h4>{{ $tes->name }}<span>{{ $tes->position }}</span></h4>
</div>
<div class="testimonial-bottom">
<p>{!! $tes->message !!}</p>
</div>
</div>
</div>
</div>
@endforeach
</div>

</div>
</div>
</div>
</section><!--testimonial section end-->
 
Back
Top