Fix recaptcha on login forms
This commit is contained in:
parent
f864b72e0a
commit
66410a35f1
10 changed files with 188 additions and 77 deletions
|
@ -21,7 +21,12 @@
|
|||
@section('user-data')
|
||||
@if(!is_null(Auth::user()))
|
||||
<script>
|
||||
window.PterodactylUser = {!! json_encode(Auth::user()->toVueObject()) !!}
|
||||
window.PterodactylUser = {!! json_encode(Auth::user()->toVueObject()) !!};
|
||||
</script>
|
||||
@endif
|
||||
@if(!empty($siteConfiguration))
|
||||
<script>
|
||||
window.SiteConfiguration = {!! json_encode($siteConfiguration) !!};
|
||||
</script>
|
||||
@endif
|
||||
@show
|
||||
|
|
Reference in a new issue