This textarea is one that is updated several times and each line in the textarea is for a separate entry. Thus it is better to have each starting at the very left of the textbox.
For example what i want is,
Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo.
But what it is displaying is,
_____(whitespace)_________________Sed ut perspiciatis, unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam eaque ipsa, quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt, explicabo.
This happens even though when I type in the textarea to save I do it all the way to the left. How do I get around this so that It only displays to the far left for each line?
This is my code:
<div class="col my-2 w-1/6">
<p class="md:text-center">Notes</p>
<textarea id="loc_notes" cols="30" rows="10" style = "font-size: 12px;width:100%" class="mx-1 border-2 border-black" name="location_notes">
@foreach($notes as $note)
{{$note->my_notes}}
@endforeach
</textarea>
</div>