@extends('layouts.admin') @section('content')
@csrf

{{ trans('global.create') }} {{ trans('cruds.customer.title_singular') }}

@if($errors->has('marking_code')) {{ $errors->first('marking_code') }} @endif {{ trans('cruds.customer.fields.marking_code_helper') }}
@if($errors->has('phone')) {{ $errors->first('phone') }} @endif {{ trans('cruds.customer.fields.phone_helper') }}
@if($errors->has('address')) {{ $errors->first('address') }} @endif {{ trans('cruds.customer.fields.address_helper') }}
@if($errors->has('email')) {{ $errors->first('email') }} @endif {{ trans('cruds.customer.fields.email_helper') }}
@if($errors->has('website')) {{ $errors->first('website') }} @endif {{ trans('cruds.customer.fields.website_helper') }}

Additional Details

@if($errors->has('first_name')) {{ $errors->first('first_name') }} @endif {{ trans('cruds.customer.fields.first_name_helper') }}
@if($errors->has('last_name')) {{ $errors->first('last_name') }} @endif {{ trans('cruds.customer.fields.last_name_helper') }}
@if($errors->has('description')) {{ $errors->first('description') }} @endif {{ trans('cruds.customer.fields.description_helper') }}
Cancel
@endsection