@extends('template') @section('content')
Forma de Pagamento Voltar
{!! Form::open(['route' => $action->route, 'method' => $action->method, 'id'=>'formaPagamento']) !!} {!! Form::hidden('id', $formadepagamento->id) !!} {!! Form::hidden('qtd_parcelas', 1 , ['id'=>'qtd_parcelas']) !!}
{!! Form::text('name', $formadepagamento->name, ['class' => 'form-control', 'id' => 'name' , 'id'=>'name']) !!} {!! Form::label('name', 'Forma de Pagamento') !!}
{!! Form::select('status', ['Ativo'=>'Ativo','Inativo'=>'Inativo'], $formadepagamento->status, ['class'=>'form-control']) !!} {!! Form::label('status', 'Status', ['class' => 'control-label']) !!}

Informe os prazos em dias
{!! Form::label('parcela[]', 'Parcela 1') !!}

 

 

Voltar
{!! Form::close() !!}
@stop() @section('js-admin-servico') @if($formadepagamento->id != '') @endif @stop()