Child theme undefined variable error

In this line you use variable called $parent_style

wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/style.css', array($parent_style));

but you don’t define such variable anywhere in your code.

Most probably you want to use the slug of parent style instead:

wp_enqueue_style('child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style'));