Old input for array? Old input for array? laravel laravel

Old input for array?


You should be able to access the index off of your language code:

value="{{ old('article_title.'.$language_code) }}"


you can use the old to return old value as an array

# old('article_title') => arrayvalue="{{ old('article_title')[$language_code] ?? "" }}"