@if (sizeof($AttributOption) > 0)
@endif
{!! Form::open(['method' => 'post', 'action' => 'Admin\AttributOptionController@store', 'files' => true]) !!}
{!! Form::Close() !!}
@endsection
@section('script')
@endsection
|
{{ translate('Attribute') }} | {{ translate('Title') }} | {{ translate('Options') }} |
---|---|---|---|
|
{{ $option->attribute_id == null ? translate('-----') : $option->attribute->getTranslation('title') }} | {{ $option->getTranslation('title') }} |
{{ translate('There is nothing you are looking for') }}
{{ translate('Add new Attribut Option to your store') }}
{{ $AttributOption->links() }}
{{ translate('Add attribut option') }}
{!! Form::select('attribute_id', $Attributes, null, ['class' => 'form-control select2', 'placeholder' => translate('Attribute')]) !!}
@error('attribute_id')
{{ $message }}
@enderror
{!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => translate('Title')]) !!}
@error('title')
{{ $message }}
@enderror