Though I am using {{ csrf_field() }} in my html file still got POST http://localhost:8000/add_user 500 (Internal Server Error)
here is my code
$.ajax({
url:"/add_user",
type: 'post',
data: {_token : token, user_type_id : user_type_id, full_name : full_name, email : email, password : password, username : username, date : date},
success:function(msg){
$("#report").load(location.href + " #report");
}
});