@extends('layouts.landing') @section('title', 'Polls') @section('content')
{{tenantSetting($_SERVER['HTTP_HOST'])->Polls ?? 'Polls'}}
@if(count($polls) > 0) @foreach($polls as $poll) @endforeach @else

Welcome to {{domain($_SERVER['HTTP_HOST'])->company_name}} Polls

There are currently no polls, you can always check here for polls @if(Auth::user()->isSuperAdmin() || Auth::user()->isTenant() || Auth::user()->isAdmin()) @if($first_poll) @else @endif @endif
@endif
@include('elements.create-poll') @include('elements.poll-list') @endsection