@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.contactContact.title_singular') }}
@csrf
@if($errors->has('company')) {{ $errors->first('company') }} @endif {{ trans('cruds.contactContact.fields.company_helper') }}
@if($errors->has('contact_first_name')) {{ $errors->first('contact_first_name') }} @endif {{ trans('cruds.contactContact.fields.contact_first_name_helper') }}
@if($errors->has('contact_last_name')) {{ $errors->first('contact_last_name') }} @endif {{ trans('cruds.contactContact.fields.contact_last_name_helper') }}
@if($errors->has('contact_phone_1')) {{ $errors->first('contact_phone_1') }} @endif {{ trans('cruds.contactContact.fields.contact_phone_1_helper') }}
@if($errors->has('contact_phone_2')) {{ $errors->first('contact_phone_2') }} @endif {{ trans('cruds.contactContact.fields.contact_phone_2_helper') }}
@if($errors->has('contact_email')) {{ $errors->first('contact_email') }} @endif {{ trans('cruds.contactContact.fields.contact_email_helper') }}
@if($errors->has('contact_address')) {{ $errors->first('contact_address') }} @endif {{ trans('cruds.contactContact.fields.contact_address_helper') }}
@endsection