The csrf has nothing to do with the authentication of the user, it has to do with protecting your application from malicious requests from other sites and trying to fool your application into thinking that it is a legit request.
Add the csrf token to your AJAX request. use '{{ csrf_token() }}'.
Make sure you wrap {{ csrf_token() }} between single or double quotes so it returns a string.