wp_kses allow checkbox class and checked

According to the codex, you should define your wp_kses list of allowed html elements as below with array() instead of true

$allowed_html = array(
    'input' => array(
        'type'      => array(),
        'name'      => array(),
        'value'     => array(),
        'checked'   => array()
    ),
);