@extends('default.layout') @section('content')
@if(session()->has('message'))
{{ session()->get('message') }}
@endif

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

@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