If it is not an array, I can just enter like below
<input value="{{old('name','ali')}}">
so the default value will display ali
But when it old('name') is an array, how can i write my default value like the previous one to, or i can only use isset() to check?
<input value="{{old('name')[$i]}}">