@if (!in_array('client', user_roles()))
@endif
@if ($product->downloadable && !in_array('client', user_roles()))
@endif
@if ($product->files)
{{ __('modules.productImage') }}
@foreach ($product->files as $file)
@endforeach
@endif
{{-- Custom fields data --}}
@if (isset($fields) && count($fields) > 0)
@foreach ($fields as $field)
@if ($field->type == 'text' || $field->type == 'password' || $field->type == 'number')
@elseif($field->type == 'textarea')
@elseif($field->type == 'radio')
@elseif($field->type == 'checkbox')
@elseif($field->type == 'select')
@elseif($field->type == 'date')
@endif
@endforeach
@endif