@extends('painel-admin.menu') @section('title', 'Ecommerce') @section('php') @stop @section('content') @if(Session::has('success')) @php $data = Session::get('success'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @if(Session::has('error')) @php $data = Session::get('error'); @endphp @if (is_array($data)) @foreach ($data as $msg) @endforeach @else @endif @endif @csrf
@csrf

Cadastro do Ecommerce


@if ($errors->has('cnpjCliente'))

{{ $errors->first('cnpjCliente') }}

@endif
@if ($errors->has('dominio'))

{{ $errors->first('dominio') }}

@endif
@if ($errors->has('endereco'))

{{ $errors->first('endereco') }}

@endif
@if ($errors->has('razaoSocial'))

{{ $errors->first('razaoSocial') }}

@endif
@if ($errors->has('fantasia'))

{{ $errors->first('fantasia') }}

@endif
@if ($errors->has('fone'))

{{ $errors->first('fone') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@endsection