File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/3d84a7c213e30c2882b4ffb33db3a1eb
<?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', 'email');
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>