1
0

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】oldがinputのvalue情報やtextareaの情報を保持してくれないとき

Last updated at Posted at 2022-02-28

はじめに

laravelで、formなどでinputのvalue値などを送信するときに、old関数を設定して「入力エラーでも入力内容を保持」してくれるように設定したがしてくれないときの自分用メモ。

解決

バックエンド側で

return redirect()->back()->withInput()->withErrors('Errors');

のように「->withInput()」を配置するとうまくいく。

参考

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?