Hey Promaty, I think not all the editor scripts are loaded in frontend…
try to use this
add_action( 'wp_enqueue_scripts', 'frontend_editor_scripts' );
function frontend_editor_scripts() {
/*Media Scripts*/
wp_enqueue_media();
/*Editor View*/
wp_enqueue_script('mce-view');
}