'sometimes|string', 'last_name' => 'sometimes|string', 'email' => 'sometimes|email', 'identifier' => 'sometimes|string', 'bio' => 'nullable|string', 'address1' => 'nullable|string', 'address2' => 'nullable|string', 'city' => 'nullable|string', 'state' => 'nullable|string', 'post_code' => 'nullable|string', 'country_iso_code' => 'nullable|country_iso_alpha2_code', 'second_email' => 'nullable|email', 'third_email' => 'nullable|email', 'gender' => 'nullable|string', 'gender_specify' => 'nullable|string', 'statement_of_interest' => 'nullable|string', 'irc' => 'nullable|string', 'linked_in_profile' => 'nullable|string', 'github_user' => 'nullable|string', 'wechat_user' => 'nullable|string', 'twitter_name' => 'nullable|string', 'language' => 'nullable|string', 'birthday' => 'nullable|date_format:U', 'password' => 'sometimes|string|min:8|confirmed', 'phone_number' => 'nullable|string', 'company' => 'nullable|string', // admin fields 'email_verified' => 'nullable|boolean', 'active' => 'nullable|boolean', 'groups' => 'sometimes|int_array', ]; } return [ 'first_name' => 'required|string', 'last_name' => 'required|string', 'email' => 'required|email', 'identifier' => 'sometimes|string', 'bio' => 'nullable|string', 'address1' => 'nullable|string', 'address2' => 'nullable|string', 'city' => 'nullable|string', 'state' => 'nullable|string', 'post_code' => 'nullable|string', 'country_iso_code' => 'nullable|country_iso_alpha2_code', 'second_email' => 'nullable|email', 'third_email' => 'nullable|email', 'gender' => 'nullable|string', 'statement_of_interest' => 'nullable|string', 'irc' => 'nullable|string', 'linked_in_profile' => 'nullable|string', 'github_user' => 'nullable|string', 'wechat_user' => 'nullable|string', 'twitter_name' => 'nullable|string', 'language' => 'nullable|string', 'birthday' => 'nullable|date_format:U', 'password' => 'sometimes|string|min:8|confirmed', 'phone_number' => 'nullable|string', 'company' => 'nullable|string', // admin fields 'email_verified' => 'nullable|boolean', 'active' => 'nullable|boolean', 'groups' => 'sometimes|int_array', ]; } }