{!! Form::open(['route' => ['admin.stock.inventory.addWithVariant', $product->id], 'method' => 'get', 'files' => true, 'id' => 'form', 'data-toggle' => 'validator']) !!}
×
{{ trans('app.form.set_variants') }}
@foreach ($attributes as $attribute)
{!! Form::label($attribute->name, $attribute->name, ['class' => 'with-help']) !!}*
@foreach ($attribute->attributeValues as $attributeValue)
{{ $attributeValue->value }}
@endforeach
@endforeach
* {{ trans('app.form.required_fields') }}
{!! Form::close() !!}