Hi , in the view :
@if ($errors->register->first('password'))
@endif
override registercontroller :
public function register(Request $request) {
$validator = $this->validator($request->all());
if ($validator->fails()) {
return back()->withErrors($validator, 'register')->withInput();
}
//code
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community