With laravel blade input id = ex. id=”group-{{$category->id}}” howto name old(‘xxxxx’)

Solution:

The old method takes the name attribute and not the id, add the attribute name to the element and then you can set the value to {{ old('group-'.$category->id) }}

More here: Old Input