@props([ 'imagePath' => null, 'imageAlt' => null, 'heading' => null, 'intro' => null, 'points' => [], ]) @if ($heading || count($points) > 0)
@if ($imagePath) @endif
@if ($heading)

{{ $heading }}

@endif @if ($intro)

{{ $intro }}

@endif @if (count($points) > 0)
    @foreach ($points as $point)
  • {{ $point }}
  • @endforeach
@endif
@endif