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

Status de pedidos

Dados do status
{!! Form::model($status, ['route'=>['andes.status.salvar', $status->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::text('cor', null, ['class'=>'form-control cor', 'maxlength'=>'7']) !!} @if($errors->has('cor')) {{ $errors->first('cor') }} @endif
@if($errors->has('send_email')) {{ $errors->first('send_email') }} @endif
{!! Form::submit('Salvar', ['class'=>'btn green']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection