SoFunction
Updated on 2025-04-04

Laravel 5.5 Implementation of Disable User Registration Example

Rewrite two functions in app/Http/Controllers/Auth/

as follows:

/**
 * Show the application registration form.
 *
 * @return \Illuminate\Http\Response
 */
public function showRegistrationForm()
{
  return redirect('login');
}
 
/**
 * Handle a registration request for the application.
 *
 * @param \Illuminate\Http\Request $request
 * @return \Illuminate\Http\Response
 */
public function register(Request $request)
{
  abort(404);
}

Correspondingly, you need to delete the registered link in the view.

The above example of Laravel 5.5 to implement the disabled user registration is all the content I have shared with you. I hope you can give you a reference and I hope you can support me more.