Currently I have working validation in my laravel project
using this code I can validate the data.
    $validatorSave1 = Validator::make(
       insert_data1,
           [
               '*.emp_id' => "required|exists:users,company_id",
           ]
     );
     if($validatorSave1->fails()){
                return redirect()
                ->back()
                ->with(['errors'=>$validatorSave1->errors()->all()])
                ->with('modal',$modal);
     }
and this gives me a return like this
How can I edit the error message like this
The selected 1.emp_id is invalid. (Employee Sheet Error)



