Assign Candidate Tag

@csrf @if(!empty($tags))
    @foreach($tags as $tag)
  • tag_id]) ? 'checked' : '' }}> {{ $tag->title }} @if(!empty($tag->childTags))
      @foreach($tag->childTags as $child)
    • tag_id]) ? 'checked' : '' }}> {{ $child->title }}
    • @endforeach
    @endif
  • @endforeach
@endif