validate([ 'name' => 'required|string|max:255', 'email' => 'required|string|email|max:255|unique:users', 'password' => 'required|string|min:8|confirmed', ]); User::create([ 'name' => $request->name, 'email' => $request->email, 'password' => bcrypt($request->password), ]); return redirect()->route('usuarios')->with('success', 'Usuario creado exitosamente.'); } /** * Display the specified resource. */ public function show(string $id) { // } /** * Show the form for editing the specified resource. */ public function edit($id) { } /** * Update the specified resource in storage. */ public function update(Request $request, $id) { } /** * Remove the specified resource from storage. */ public function destroy($id) { $usuario = User::findOrFail($id); $usuario->delete(); return redirect()->route('usuarios')->with('success', 'Usuario eliminado exitosamente.'); } }