Also the gallery upload field code is
array(
'id' => 'gallery_upload',
'name' => esc_html__( 'IMAGE UPLOAD', 'your-prefix' ),
'type' => 'image_upload',
'admin_columns' => 'before title',
//'required' => true,
// Delete image from Media Library when remove it from post meta?
// Note: it might affect other posts if you use same image for multiple posts
'force_delete' => true,
// Maximum image uploads
'max_file_uploads' => 5,
// Display the "Uploaded 1/2 files" status
'max_status' => true,
),