@extends('adm.template.template')
@section('conteudo')
@if($valores[0] == 0)
Nenhum Cliente Cadastrado!
@else
{!! Form::open(['route' => 'clientes.salvarOrdem', 'method' => 'put']) !!}
@for ($i = 1; $i <= $valores[0]; $i++)
@if( count($valores[2]) > 0 )
{!! Form::select($i, $valores[1], $valores[2][$i] , ['placeholder'=>'Nome', 'class' => 'form-control']) !!}
@else
{!! Form::select($i, $valores[1], null , ['placeholder'=>'Nome', 'class' => 'form-control']) !!}
@endif
@endfor
{!! Form::submit('Editar', ['class' => 'btn btn-primary pull-right']) !!}
{!! Form::close() !!}
@endif
@endsection
@section('js')
@endsection