Update captcha views

This commit is contained in:
Daniel Supernault 2020-12-12 21:12:30 -07:00
parent 5b7b079d33
commit 425a6311e2
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
4 changed files with 4 additions and 3 deletions

View File

@ -213,6 +213,7 @@ return [
'PrettyNumber' => App\Util\Lexer\PrettyNumber::class,
'Purify' => Stevebauman\Purify\Facades\Purify::class,
'FFMpeg' => Pbmedia\LaravelFFMpeg\FFMpegFacade::class,
'Captcha' => Buzz\LaravelHCaptcha\CaptchaFacade::class,
],
];

View File

@ -52,7 +52,7 @@
@if(config('captcha.enabled'))
<div class="d-flex justify-content-center mb-3">
{!! app('captcha')->display() !!}
{!! Captcha::display() !!}
</div>
@endif

View File

@ -83,7 +83,7 @@
@if(config('captcha.enabled'))
<div class="d-flex justify-content-center my-3">
{!! app('captcha')->display() !!}
{!! Captcha::display() !!}
</div>
@endif

View File

@ -110,7 +110,7 @@
</div>
@if(config('captcha.enabled'))
<div class="d-flex justify-content-center mb-3">
{!! app('captcha')->display() !!}
{!! Captcha::display() !!}
</div>
@endif
<div class="form-group row mb-0">