Jinput::get('images') doesn't behave like Input::get('images') when you have multiple fields that use the same name and a key, like so: images[0], images[1], images[2].
In fact, it triggers an exception due to the fact that it uses trim on the value, which in this situation is an array, not a string.
Jinput::get('images') doesn't behave like Input::get('images') when you have multiple fields that use the same name and a key, like so: images[0], images[1], images[2].
In fact, it triggers an exception due to the fact that it uses trim on the value, which in this situation is an array, not a string.