/**
  * Create a new controller instance.
  *
  * @return void
  */
 public function __construct(UsersRepositoryEloquent $r_users)
 {
     $this->middleware('guest');
     $this->r_users = $r_users;
     $this->subject = trans('passwords.mail_reset_password_title');
     $this->redirectTo = route(cms_route_frontend());
 }
 /**
  * RegisterController constructor.
  *
  * @param UsersRepositoryEloquent $r_users
  */
 public function __construct(UsersRepositoryEloquent $r_users)
 {
     $this->middleware('guest');
     $this->r_users = $r_users;
     $this->redirectTo = route(cms_route_frontend());
 }