@if($type == "multiple")
@if(!empty($data->fkIntImgId) && isset($data->fkIntImgId)) @php $imageArr = explode(',',$data->fkIntImgId) @endphp
    @foreach($imageArr as $key => $value)
  • Img
  • @endforeach
@else
@endif @php $height = isset($settings->height)?$settings->height:500; $width = isset($settings->width)?$settings->width:500; @endphp {{ trans('template.common.imageSize',['height'=>$height, 'width'=>$width]) }}
@elseif($type == "single")
@if(Request::old('image_url')) @elseif (isset($data->fkIntImgId) && $data->fkIntImgId != '') @else @endif
@php $height = isset($settings->height)?$settings->height:$height; $width = isset($settings->width)?$settings->width:$width; @endphp {{ trans('template.common.imageSize',['height'=> $height, 'width'=>$width]) }} @if(isset($errors)) {{ $errors->first($name) }} @endif
@endif