@extends('layouts.app') @section('title', $customer->name) @section('content')
@if ($errors->any()) @endif
{{ $customer->name }}
@csrf @method('PUT')
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('type')) {{ $errors->first('type') }} @endif
{{ __('Data') }}
@foreach($customer->data as $data)
@if($errors->has('data.' . $loop->index . '.name')) {{ $errors->first('data.' . $loop->index .'.name') }} @endif
@if($errors->has('data.' . $loop->index . '.description')) {{ $errors->first('data.' . $loop->index .'.description') }} @endif
@endforeach
@endsection @section('scripts') @endsection