Any browser console errors? (a different js error could stop all js)
dumb question, but the view you are showing does extend master?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I'm trying to get the google reCAPTCHA to work and I'm not sure if I'm doing something wrong. I've added my site key and secret key in my .env file
RECAPTCHA_SITE_KEY=site_key
RECAPTCHA_SECRET_KEY=secret_key
and then I added this to my master.blade.php template
<script src='https://www.google.com/recaptcha/api.js'></script>s
and I added this to my form
<div class="g-recaptcha" data-sitekey="{!! env('RECAPTCHA_SITE_KEY') !!}"></div>
and when I refresh my browser the reCAPTCHA doesn't show up
Please or to participate in this conversation.