I'm using the bootstrap theme for my wordpress site. My problem is that in my navbar the search form is showing the placeholder as search and I want to change it, that's why I change the searchform.php file at this line but nothing is changing.
Here is the form.php:
<form method="get" id="searchform" class="form-search" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label for="s" class="assistive-text hidden"><?php _e( 'Search', 'the-bootstrap' ); ?></label>
<div class="input-append">
<input id="s" class="span2 search-query" type="search" name="s" placeholder="<?php esc_attr_e('Search', 'the-bootstrap' ); ?>"><!--
--><button class="btn btn-primary" name="submit" id="searchsubmit" type="submit"><?php _e( 'Go', 'the-bootstrap' ); ?></button>
</div>
</form>
I want to change the placeholder to an icon so should I have to change this line or anything else?