@extends(layoutTenant()) @section('content')

Editar @if(Auth::user()->account->tipo == "Consórcio") Prefeito @else Vereador @endif

@if ($errors->any())
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('erro'))
{{ session('erro') }}
@endif {!! Form::model($category, ['url'=>routeTenant('vereadores.update', [$category->id]),'enctype'=>'multipart/form-data','method' => 'PUT']) !!} @include('app.pauta.vereadores._form')
{!! Form::submit('Salvar', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection