Laravel: textarea does not refill when using Input::old

前端 未结 5 503
感情败类
感情败类 2021-02-07 17:39

I am experiencing that only the Input Textfields respond as expected when I write the code to repopulate a form (when errors were found for example) or when from a table row I c

5条回答
  •  你的背包
    2021-02-07 18:17

    Sorry for late reply

    {{Form::textarea('mobile_message', isset($notifications -> mobile_message) ? $notifications -> mobile_message : null, 'id'=> 'mob_id','class' => 'form-control'))}}
    

提交回复
热议问题