@extends('andes.zbase::layout') @section('content')
{!! Breadcrumbs::render('filtros.editar') !!}

Filtros

Dados do filtro
{!! Form::model($filtro, ['route'=>['andes.filtros.salvar', $filtro->id], 'class'=>'form-horizontal form-validate', 'role'=>'form']) !!}
{!! Form::text('nome', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('nome')) {{ $errors->first('nome') }} @endif
{!! Form::hidden('continuar', 0) !!} {!! Form::submit('Salvar', ['class'=>'btn green']) !!} {!! Form::button('Salvar e continuar', ['class'=>'btn green continuar']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection