File: D:/HostingSpaces/SBogers47/ehbocranendonck.nl/app/storage/views/bd0b464664095a8102d2bd6fc03e70b2
<?php if(Input::old('honey', '') !== ''): ?>
<p class="honey-message"><?php echo \Illuminate\Support\Facades\Lang::get('validation.botError'); ?></p>
<?php endif; ?>
<script>
var honeyInputHolder = document.createElement('DIV');
honeyInputHolder.setAttribute('class', 'input-holder honey');
var honeyInput = document.createElement('INPUT');
honeyInput.setAttribute('name', 'honey');
honeyInput.setAttribute('type', 'text');
honeyInput.setAttribute('autocomplete', 'honeyPot');
honeyInput.setAttribute('value', '<?php echo Input::old('honey', ''); ?>');
honeyInputHolder.appendChild(honeyInput);
var form = document.getElementById('<?php echo $formId; ?>');
form.insertBefore(honeyInputHolder, form.querySelector('*:first-child'));
</script>
<noscript>
Please activate your javascript to fill in this contact form.
</noscript>