@extends('layouts.argo') @section('content')

Cadastrar Administrador

{{csrf_field()}}

@if($errors->has('name')) @foreach($errors->get('name') as $e) {{$e}} @endforeach @endif
@if($errors->has('cpfcnpj')) @foreach($errors->get('cpfcnpj') as $e) {{$e}} @endforeach @endif
@if($errors->has('email')) @foreach($errors->get('email') as $e) {{$e}} @endforeach @endif
@if($errors->has('password')) @foreach($errors->get('password') as $e) {{$e}} @endforeach @endif
@if($errors->has('password_confirmation')) @foreach($errors->get('password_confirmation') as $e) {{$e}} @endforeach @endif
@endsection