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

Configurações

Configurações gerais
{!! Form::model($configuracao, ['route'=>'andes.configuracoes.salvar', 'class'=>'form-horizontal form-validate', 'role'=>'form']) !!}
{!! Form::text('logradouro', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('logradouro')) {{ $errors->first('logradouro') }} @endif
{!! Form::text('numero', null, ['class'=>'form-control numero', 'maxlength'=>'5']) !!} @if($errors->has('numero')) {{ $errors->first('numero') }} @endif
{!! Form::text('complemento', null, ['class'=>'form-control', 'maxlength'=>'20']) !!} @if($errors->has('complemento')) {{ $errors->first('complemento') }} @endif
{!! Form::text('bairro', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('bairro')) {{ $errors->first('bairro') }} @endif
{!! Form::text('cidade', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('cidade')) {{ $errors->first('cidade') }} @endif
{!! Form::text('estado', null, ['class'=>'form-control', 'maxlength'=>'2', 'required']) !!} @if($errors->has('estado')) {{ $errors->first('estado') }} @endif
{!! Form::text('cep', null, ['class'=>'form-control cep', 'maxlength'=>'9', 'required']) !!} @if($errors->has('cep')) {{ $errors->first('cep') }} @endif
{!! Form::text('telefone', null, ['class'=>'form-control telefone', 'maxlength'=>'15', 'required']) !!} @if($errors->has('telefone')) {{ $errors->first('telefone') }} @endif
{!! Form::email('email', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::text('cnpj', null, ['class'=>'form-control cnpj', 'maxlength'=>'18', 'required']) !!} @if($errors->has('cnpj')) {{ $errors->first('cnpj') }} @endif
{!! Form::text('horario_atendimento', null, ['class'=>'form-control', 'maxlength'=>'255', 'required']) !!} @if($errors->has('horario_atendimento')) {{ $errors->first('horario_atendimento') }} @endif
{!! Form::text('parcelas_sem_juros', null, ['class'=>'form-control counter', 'maxlength'=>'2', 'required']) !!} @if($errors->has('parcelas_sem_juros')) {{ $errors->first('parcelas_sem_juros') }} @endif
{!! Form::submit('Salvar', ['class'=>'btn green']) !!}
{!! Form::close() !!}
@endsection @section('scripts') @endsection