/home/arranoyd/magicraft/wp-content/plugins/incsub-support/admin/views/edit-ticket-category.php
<?php if ( $updated ): ?>
	<div class="updated"><p><?php _e( 'Category updated', INCSUB_SUPPORT_LANG_DOMAIN ); ?></p></div>
<?php endif; ?>

<form id="categories-table-form" action="" method="post">
	<table class="form-table">
		<?php ob_start(); ?>
			<input type="text" name="cat_name" value="<?php echo esc_attr( $category_name ); ?>">
		<?php $this->render_row( __( 'Category name', INCSUB_SUPPORT_LANG_DOMAIN ), ob_get_clean() ); ?>
		<?php $this->render_row( __( 'Assign to user', INCSUB_SUPPORT_LANG_DOMAIN ), $super_admins_dropdown ); ?>
	</table>
	<input type="hidden" name="ticket_cat_id" value="<?php echo esc_attr( $ticket_category->cat_id ); ?>">
	<?php wp_nonce_field( 'edit-ticket-category-' . $ticket_category->cat_id, '_wpnonce' ); ?>
	<?php submit_button( null, 'primary', 'submit-edit-ticket-category' ); ?>
</form>