{!! Form::numeric('order_id')
-> label(trans('returning::returning.label.order_id'))
-> placeholder(trans('returning::returning.placeholder.order_id'))!!}
{!! Form::numeric('product_id')
-> label(trans('returning::returning.label.product_id'))
-> placeholder(trans('returning::returning.placeholder.product_id'))!!}
{!! Form::text('product')
-> label(trans('returning::returning.label.product'))
-> placeholder(trans('returning::returning.placeholder.product'))!!}
{!! Form::text('model')
-> label(trans('returning::returning.label.model'))
-> placeholder(trans('returning::returning.placeholder.model'))!!}
{!! Form::numeric('quantity')
-> label(trans('returning::returning.label.quantity'))
-> placeholder(trans('returning::returning.placeholder.quantity'))!!}
{!! Form::inline_radios('opened')
-> radios(trans('returning::returning.options.opened'))
-> label(trans('returning::returning.label.opened'))!!}
{!! Form::inline_radios('return_action')
-> radios(trans('returning::returning.options.return_action'))
-> label(trans('returning::returning.label.return_action'))!!}
{!! Form::text('comment')
-> label(trans('returning::returning.label.comment'))
-> placeholder(trans('returning::returning.placeholder.comment'))!!}