<tr>
    <th colspan="2">広告掲載承諾書</th>
    <td>
        <div class="d-flex justify-content-between align-items-center">
            <div>
                <?php echo $__env->make('admin.objects.components.add-consent-image', ['id' => 'imageAreaConsent'], \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
            </div>
            <div class="ml10 w50_per">
                <div class="mt10">
                    <?php echo $__env->make('admin.objects.components.btn', ['name' => 'del_article_sheet_consent', 'class' => '', 'title' => '削除', 'type' => 'button'], \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
                </div>
                <div class="mt10">
                <a id="preview-consent-img" class="text-decoration-line consent-preview" href="javascript:void(0)">拡大表示</a>
                </div>
            </div>
            <div class="invisible">
                <img src="/admin/img/vendor_sheet.png" >
            </div>
        </div>
    </td>
</tr>

<script>
    $(document).ready(function (){
        var consentSrc = $('#consent-img').attr('src')
        if(consentSrc){
            //enable preview image in new tab
            $('#preview-consent-img').attr({
                'href': consentSrc,
                'target': '_blank'
            })
        }
    })
</script>

