Set textarea width to 100% in bootstrap modal
If i understand right this is what your looking for.
.form-control { width: 100%; }
See demo on JSFiddle.
Try add min-width: 100%
to style of your textarea:
<textarea class="form-control" style="min-width: 100%"></textarea>