@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.customer.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.customer.fields.name_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.customer.fields.address_helper') }}
@if($errors->has('phone_number'))
{{ $errors->first('phone_number') }}
@endif {{ trans('cruds.customer.fields.phone_number_helper') }}
@if($errors->has('attributes'))
{{ $errors->first('attributes') }}
@endif {{ trans('cruds.customer.fields.attributes_helper') }}
@endsection