{!! $customized['id'] !!}
{!! $customized['user_id'] !!}
{!! $customized['product_id'] !!}
{!! $customized['slug'] !!}
{!! $customized['name'] !!}
{!! $customized['price'] !!}
{!! $customized['quantity'] !!}
{!! $customized['status'] !!}
{!! $customized['description'] !!}
{!! $customized['attributes'] !!}
{!! $customized['image'] !!}
{!! $customized['delivered_date'] !!}
{!! $customized['created_at'] !!}
{!! $customized['updated_at'] !!}
{!! $customized['deleted_at'] !!}
{!! Form::select('product_id')
-> options(trans('customized::customized.options.product_id'))
-> label(trans('customized::customized.label.product_id'))
-> placeholder(trans('customized::customized.placeholder.product_id'))!!}
{!! Form::text('name')
-> label(trans('customized::customized.label.name'))
-> placeholder(trans('customized::customized.placeholder.name'))!!}
{!! Form::decimal('price')
-> label(trans('customized::customized.label.price'))
-> placeholder(trans('customized::customized.placeholder.price'))!!}
{!! Form::numeric('quantity')
-> label(trans('customized::customized.label.quantity'))
-> placeholder(trans('customized::customized.placeholder.quantity'))!!}
{!! Form::textarea ('description')
-> label(trans('customized::customized.label.description'))
-> placeholder(trans('customized::customized.placeholder.description'))!!}
{!! Form::textarea ('attributes')
-> label(trans('customized::customized.label.attributes'))
-> placeholder(trans('customized::customized.placeholder.attributes'))!!}