Fix "Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')"

This commit is contained in:
Julian Prieber 2024-09-23 13:00:54 +02:00
parent 9806afe60f
commit 980a720842
1 changed files with 13 additions and 11 deletions

View File

@ -131,6 +131,7 @@ if(Auth::user()->id == $userinfo->id){
document.getElementById('logoutForm').submit(); document.getElementById('logoutForm').submit();
} }
</script> </script>
@if(auth()->user()->role != 'admin')
<script> <script>
function showConfirmation() { function showConfirmation() {
var isConfirmed = confirm("{{__('messages.confirm.delete.user')}}"); var isConfirmed = confirm("{{__('messages.confirm.delete.user')}}");
@ -143,6 +144,7 @@ if(Auth::user()->id == $userinfo->id){
showConfirmation(); showConfirmation();
}); });
</script> </script>
@endif
<form id="logoutForm" action="{{ route('logout') }}" method="post"> <form id="logoutForm" action="{{ route('logout') }}" method="post">
<input type="hidden" name="_token" value="{{ csrf_token() }}"> <input type="hidden" name="_token" value="{{ csrf_token() }}">
</form> </form>