@extends('template') @section('content')

{!!$pesquisa->titulo!!}

{!! Form::open(['route' => $action->route, 'method' => $action->method, 'id'=>'pesquisa']) !!} {!! Form::hidden('pesquisa_satisfacao_id', $pesquisa->id) !!} {!! Form::hidden('pesquisa_satisfacao_registro', $registro->id) !!}
@foreach($pesquisa->perguntas as $key => $pergunta) {!! Form::hidden('perguntas[]', $pergunta->id) !!}
{!! Form::hidden('pesquisa_satisfacao_id', $pesquisa->id) !!} @if(count($pergunta->alterantivas)>0)
@foreach($pergunta->alterantivas as $alterantivas) {!! Form::hidden('resposta['.$pergunta->id.']', $alterantivas->alternativa) !!}
{!! Form::radio('alternativa['.$pergunta->id.'] ',$alterantivas->id ,'' , ['id'=>'alternativa'.$alterantivas->id,'class'=>'md-radiobtn','required'=>'true']) !!}
@endforeach
@else
{!! Form::textarea('resposta['.$pergunta->id.']','', ['class' => 'form-control', 'id'=>'enunciado', 'autocomplete' => 'off','style'=>'max-height:100px;resize:none']) !!} {!! Form::label('name', 'Resposta') !!}
@endif

@endforeach
{!! Form::close() !!}
@stop() @section('js-admin-user') @stop()