@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.crmCustomer.title_singular') }}
@method('POST') @csrf
@if($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif {{ trans('cruds.crmCustomer.fields.first_name_helper') }}
@if($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif {{ trans('cruds.crmCustomer.fields.last_name_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.crmCustomer.fields.status_helper') }}
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif {{ trans('cruds.crmCustomer.fields.email_helper') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif {{ trans('cruds.crmCustomer.fields.phone_helper') }}
@if($errors->has('address'))
{{ $errors->first('address') }}
@endif {{ trans('cruds.crmCustomer.fields.address_helper') }}
@if($errors->has('skype'))
{{ $errors->first('skype') }}
@endif {{ trans('cruds.crmCustomer.fields.skype_helper') }}
@if($errors->has('website'))
{{ $errors->first('website') }}
@endif {{ trans('cruds.crmCustomer.fields.website_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.crmCustomer.fields.description_helper') }}
@endsection