@extends('layouts.app') @section('title', __('New Customer')) @section('content')
@if ($errors->any()) @endif
{{ __('New Customer') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('type')) {{ $errors->first('type') }} @endif
{{ __('Data') }}
@if($errors->has('data.0.name')) {{ $errors->first('data.0.name') }} @endif
@if($errors->has('data.0.description')) {{ $errors->first('data.0.description') }} @endif
@endsection @section('scripts') @endsection