@extends('layout.default')
@section('title')
{{ __('poll.poll') }} - {{ config('other.title') }}
@endsection
@section('breadcrumbs')
{{ __('poll.polls') }}
{{ $poll->title }}
@endsection
@section('page', 'page__poll--show')
@section('main')
{{ $poll->title }}
@include('poll.forms.vote')
@endsection
@if ($poll->multiple_choice)
@section('sidebar')
{{ __('common.info') }}
{{ __('poll.multiple-choice') }}
@endsection
@endif