I m using laravel starter-kit in that i did't get any porper response message while authanticate
I'm glad you were able to solve the issue! If you have any more questions or run into issues, feel free to ask!
Hi Nipesh Raithatha,
Please provide a screenshot that captures the relevant portion of the issue or error message. If there are any specific error messages, include them in the screenshot as well.
It would be helpful to see a screenshot of the problem. This will allow me to better understand.
Once you've captured the screenshot, you can upload it to an image hosting service (such as imgbb) and share the link here.
Thanks
i have solved this issue issue was in General.js
first issue is that when we are setup fresh project general.js is giving an error we have to put general.js into public\assets\js\custom\authentication\sign-in\general.js folder.
after adding general.js into that asset folder we get all response message of authentication module into network console that is actual error message .
and the change we have to do is
.catch(function (error) {
Swal.fire({
text:error.response.data.message
icon: "error",
buttonsStyling: false,
confirmButtonText: "Ok, got it!",
customClass: {
confirmButton: "btn btn-primary"
}
});
insted of static error message we need to add this error.response.data.message