handleToggleChange(name, event, toggled) {
    let {form} = this.state;
    form[name] = toggled;
    this.setState({form});
  }