Render concrete5 tags select on single page.

Permalink
I am attempting to modify the Bulk SEO update page, to display the page's tags attribute.
Link: /index.php/dashboard/system/seo/bulk
I attempted to render out the tags using the code from the concrete5 tags block.
[code]
<?php
echo $cobj->getAttributeValueObject('tags');
$ak = CollectionAttributeKey::getByHandle('tags');
$av = $cobj->getAttributeValueObject('tags');
$ak->render(new \Concrete\Core\Attribute\Context\DashboardFormContext(), $av);
?>
[code]

example:
echo statement will print out the page correct attributes

Correct page Attribute:
tag 1, tag 2, tag3 , etc
tags selection(correct on first page option ):
tag 4, tag 5, tag 6

The problem is the same values are repeated for every tag on that page. From troubleshooting, It seems the javascript used for the field, the options and items attributes in the JSON are only set in the first script on the form.

Any help pointing me to the best way to render out the tags select box will greatly be appreciated.