I am not able to set default value of textbox using php while using angularjs
<input type="text" ng-model="formToken" value="<?php echo $token; ?>">
In this the output is not showing token value in textbox, but when I remove ng-model="formToken" then token value showing in value attribute, otherwise its showing blank. I want to pass $token to textbox value attribute, how can I fix this?