{{ Form::field('name', 'Nome do Fadista') }} {{ Form::field('city', 'Cidade') }} {{ Form::field('song', 'Música') }} {{ Form::field('bio', 'Biografia', 'textarea') }} @if(Contest::getEdition() === 'pt-BR') {{ is_null($item->contest_discover_method) ? 'Não respondeu' : $item->contest_discover_method }} @endif
{{ Form::field('email', 'Email') }} {{ Form::field('phone', 'Telefone') }} {{ Form::field('alternative_name', 'Nome de contacto alternativo') }} {{ Form::field('alternative_email', 'Email alternativo') }} {{ Form::field('alternative_phone', 'Telefone alternativo') }} {{ Form::field('nationality', 'Nacionalidade') }}
{{ Form::media($media['image']) }}

{{ Form::youtube('video_url', 'URL da 1ª música') }}
{{ Form::youtube('second_video_url', 'URL da 2ª música') }}
{{ Form::youtube('interview_url', 'URL da entrevista') }}

{{ Form::boolean('rejected', 'Rejeitado', array('field' => array('class' => 'approval'))) }}
{{ Form::field('rejection_reasons', 'Motivo de rejeição (opcional)', 'textarea') }}
{{ Form::boolean('approved', 'Aprovado', array('field' => array('class' => 'approval'))) }}


{{ Form::boolean('shortlist', 'Semi-final') }}
{{ Form::boolean('final', 'Final') }}
{{ Form::boolean('winner', 'Vencedor') }}
{{ Form::boolean('selected', 'Selecionado') }}

Votos

@if (count($item->votes))
@foreach ($item->votes as $vote) @endforeach
Registo Timestamp IP Etapa
{{{ $vote->voter_identifier }}} {{{ $vote->display_created_at }}} {{{ $vote->ip }}} {{{ $vote->display_phase }}}
@else
Não há votos para este fadista
@endif