App\Http\Controllers\User\Settings\GroupController::edit PHP Method

edit() public method

show group editing page
public edit ( $id ) : Xpressengine\Presenter\RendererInterface
$id
return Xpressengine\Presenter\RendererInterface
    public function edit($id)
    {
        $group = $this->groups->find($id);
        return XePresenter::make('user.settings.group.edit', compact('group'));
    }