Embedding testimonials in order forms

Clients sometimes ask to help out embedding testimonials in the order form.

Add the following code in payments/_invoice_items.twig after last {% endif %}

<!-- Testimonials -->
<div class="media border p-3">
    <img src="https://i.pravatar.cc/150?img=68" alt="Rock it Testimonial" class="mr-3 mt-3 rounded-circle" style="width:30px;">
    <div class="media-body">
        <p>This has been the by far best experience in my life.</p>
        <strong>Brian Bouvet</strong><br>
        <small>
            <i>Rock it Till you Make it</i>
        </small>
    </div>
</div><br>
<div class="media border p-3">
    <img src="https://i.pravatar.cc/150?img=12" alt="Awesome Inc Testimonial" class="mr-3 mt-3 rounded-circle" style="width:30px;">
    <div class="media-body">
        <p>What a team of professionals, makes everyone else look like amateurs!</p>
        <strong>Tommy A</strong><br>
        <small>
            <i>Awesome Inc</i>
        </small>
    </div>
</div><br>

The images used in the testimonials can be uploaded to imgur or any other image hosting service. Ideally, they should be hosted on the same domain as the website though.