Good day to all, I want to change default error message as "Title is required" to "Please enter title" The code I use: Controller
$this->validate($request, [
'Title'=>'required',
]);
Also, how can I ensure that a user cannot save the same data into database, for example, if there is already a Title as Movie 43 we do not have to let user save that Title again in the database.