{!! 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'))!!}
{!! $customized->files('image') ->url($customized->getUploadUrl('image')) ->mime(config('filer.image_extensions')) ->dropzone()!!}
{!! $customized->files('image') ->editor()!!}
{!! Form::text('delivered_date') -> placeholder(trans('customized::customized.placeholder.delivered_date')) ->raw()!!}