@extends('layout')
@section('title')
Registro votación
@endsection
@section('content')
{!! Form::open(['route'=>['votos.update', $temaV->id], 'method'=>'PUT', 'files' => true, 'role' => 'form', 'id' => '']) !!}
@include('votaciones.form')
{!! Form::close() !!}
@endsection