I'm trying to put an icon into my input fields in blade, to look like this
But don't succeed. I've handled to put an icon to a button:
{{ HTML::decode(Form::button('<i class="glyphicon glyphicon-check"></i> Send', array('class' => 'btn'))) }}
This is how I added it to the input:
{{ HTML::decode(Form::text('From','<i class="glyphicon glyphicon-check"></i> '.Input::get('from'),array('class' => 'myclass', 'id' => 'fromform'))) }}
Gives this output:
Not what we are looking for...
I've tried to add the icon in the labels and inputs, but nothing worked. Anyone an idea?