{!! Form::label('attribute_id', trans('app.form.attribute').'*', ['class' => 'with-help']) !!} {!! Form::select('attribute_id', $attributeList , isset($attribute) ? $attribute->id : null, ['class' => 'form-control select2-attribute_value-attribute', 'placeholder' => trans('app.placeholder.attribute'), 'required']) !!}
{!! Form::label('value', trans('app.form.attribute_value').'*') !!}
{!! Form::text('value', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.attribute_value'), 'required']) !!}
{!! Form::label('order', trans('app.form.list_order')) !!}
{!! Form::number('order', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.list_order')]) !!}
{!! Form::label('color', trans('app.form.color_attribute')) !!}
{!! Form::text('color', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.color')]) !!}
@if(isset($attributeValue) && Storage::exists(optional($attributeValue->image)->path)) @endif
{{ trans('app.form.upload') }}

* {{ trans('app.form.required_fields') }}