2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Laravelで <textarea>の先頭にスペースが出てくる

Posted at

ローカルで開発中地味に改善するのに困ったのでメモ

#実装したいもの
・自己紹介に入力した内容を修正したい

このように書いていました。

edit.blade.php
<textarea>
    {{ old($profile) ?? $profile->text }}
</textarea>

スクリーンショット 2021-05-14 21.12.04.png

このように先頭に変なスペースが出てきます。

#改善方法
・一行で書く。

たったこれだけでした。

edit.blade.php
<textarea>{{ old($profile) ?? $profile->text }}</textarea>

スクリーンショット 2021-05-14 21.12.34.png

フロントをまだ使いこなせていないのでメモしていきます。

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?