@if (! $data->confirmed_at)
    
        {!! BaseHelper::clean(
        trans('plugins/ecommerce::customer.verify_email.notification', [
            'approve_link' => Html::link(
                route('customers.verify-email', $data->id),
                trans('plugins/ecommerce::customer.verify_email.approve_here'),
                ['class' => 'verify-customer-email-button'],
            ),
        ])) !!}
    
    @push('footer')
        
            {!! trans('plugins/ecommerce::customer.verify_email.confirm_description') !!}
        
    @endpush
@endif