[Vuejs]-Read array that is returned from a controller

0👍

add error.js and write condition in your controller like if username and password doesn’t match with database then use:

return redirect()->back()->withErrors();

it will display errors in front-end.

Leave a comment