As I an New to ReactJS.
What i am doing is when i type is any field State should be update in particular field -
As This is my LoginComponet and Setting small Form -
import React, { Component } from 'react';
import '../css/style.css';
export class LoginCompoent extends Component {
constructor(props) {
    super(props);
    this.state = {
        field: {
            phone: {
                value: '',
                validations: [],
                errors: []
            },
            password: {
                value: '',
                validations: [],
                errors: []
            }
        }
    };
    this.handelChangeEvent = this.handelChangeEvent.bind(this);
}
componentDidMount() {
}
handelChangeEvent(event) {
    this.setState({
        field: {
            [event.target.id]: {
                'value': event.target.value
            }
        }
    });
}
render() {
    console.log(this.state);
    return (
        <div className="loginMainDiv" >
            <div className="">
                <input className="login_inp" placeholder="Mobile Number"
                    value={this.state.field.phone.value}
                    onChange={this.handelChangeEvent}
                    type="text" name="phone" id="phone"
                />
                <input className="login_inp" placeholder="Password"
                    value={this.state.field.password.value}
                    onChange={this.handelChangeEvent}
                    type="password" name="password" id="password"
                />
                <button className="login_btn" >Login Safely</button>
            </div>
        </div>
    );
}
}
Expected Result - on console.log(this.state);
when I type 9 in phone field -
      field: {
            phone: {
                value: '9',
                validations: [],
                errors: []
            },
            password: {
                value: '',
                validations: [],
                errors: []
            }
        }
Getting Result -
field: {
            phone: {
                value: '9'
            }
        }
I don't know why all fields are suddenly hidden when i update only phone field. ?
Because of this password is not setting in the form. ERROR - this.state.field.password is undefined ???
 
     
    