App\Http\Controllers\UsersController::create PHP Method

create() public method

Show the form for creating a new resource.
public create ( ) : Response
return Response
    public function create()
    {
        return view('users.create')->withRoles($this->roles->listAllRoles())->withDepartments($this->departments->listAllDepartments());
    }