{{ Form::field('name', 'Nome do Fadista') }}
{{ Form::field('city', 'Cidade') }}
{{ Form::field('song', 'Música') }}
{{ Form::field('bio', 'Biografia', 'textarea') }}
@foreach ($item->elements as $member)
- {{ $member->name.' - '.$member->function }}
@endforeach
@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') }}
@if (count($item->votes))
| Registo |
Timestamp |
IP |
Etapa |
@foreach ($item->votes as $vote)
| {{{ $vote->voter_identifier }}} |
{{{ $vote->display_created_at }}} |
{{{ $vote->ip }}} |
{{{ $vote->display_phase }}} |
@endforeach
@else
Não há votos para este fadista
@endif