Backend\UserGroupsController::create PHP Method

create() public method

Show the form for creating a new user groups.
public create ( ) : Response
return Response
    public function create()
    {
        $this->layout->title = 'Create New User Group';
        $this->layout->content = View::make($this->link_type . '.' . $this->current_theme . '.user_groups.create_edit')->with('access_areas', UserGroup::access_areas());
    }