@foreach ($attributes as $attribute) @php $translate = $attribute->translate(app_get_locale()); @endphp
{{__('Attribute: :name',['name'=>$translate->name])}}
@foreach($attribute->terms as $term) @php $term_translate = $term->translate(app_get_locale()); @endphp
contains($term->id)) checked @endif type="checkbox" name="terms[]" value="{{$term->id}}">
{{$term_translate->name}}
@endforeach
@endforeach