Add logic condition to prevent showing toastr in every page
In includes-bottom.php:
<script>
if ($this->session->flashdata('error_message') !== null) {
toastr.error('<?php echo $this->session->flashdata('error_message');?>');
}
</script>
<?php } ?>