@extends('default.layout') @section('content')

{{{ isset($config) ? "Editar": "Cadastrar" }}} Configuração de Mercado

@csrf
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('funcionamento'))
{{ $errors->first('funcionamento') }}
@endif
@if($errors->has('descricao'))
{{ $errors->first('descricao') }}
@endif
@if($errors->has('total_de_produtos'))
{{ $errors->first('total_de_produtos') }}
@endif
@if($errors->has('total_de_clientes'))
{{ $errors->first('total_de_clientes') }}
@endif
@if($errors->has('total_de_funcionarios'))
{{ $errors->first('total_de_funcionarios') }}
@endif
@endsection