Hi,
You can also disable the Gutenberg Editor with code. Simply add the following to your functions.php file.
add_filter('use_block_editor_for_post', '__return_false', 10);
// Disables the block editor from managing widgets in the Gutenberg plugin.
add_filter( 'gutenberg_use_widgets_block_editor', '__return_false', 100 );
// Disables the block editor from managing widgets. renamed from wp_use_widgets_block_editor
add_filter( 'use_widgets_block_editor', '__return_false' );