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

{{{ isset($config) ? "Editar": "Cadastrar" }}} Escritório

@if($errors->has('razao_social'))
{{ $errors->first('razao_social') }}
@endif
@if($errors->has('nome_fantasia'))
{{ $errors->first('nome_fantasia') }}
@endif
@if($errors->has('cnpj'))
{{ $errors->first('cnpj') }}
@endif
@if($errors->has('ie'))
{{ $errors->first('ie') }}
@endif
@if($errors->has('logradouro'))
{{ $errors->first('logradouro') }}
@endif
@if($errors->has('numero'))
{{ $errors->first('numero') }}
@endif
@if($errors->has('bairro'))
{{ $errors->first('bairro') }}
@endif
@if($errors->has('cep'))
{{ $errors->first('cep') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('fone'))
{{ $errors->first('fone') }}
@endif

@endsection