@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.client.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('first_name'))

{{ $errors->first('first_name') }}

@endif

{{ trans('cruds.client.fields.first_name_helper') }}

@if($errors->has('last_name'))

{{ $errors->first('last_name') }}

@endif

{{ trans('cruds.client.fields.last_name_helper') }}

@if($errors->has('company'))

{{ $errors->first('company') }}

@endif

{{ trans('cruds.client.fields.company_helper') }}

@if($errors->has('email'))

{{ $errors->first('email') }}

@endif

{{ trans('cruds.client.fields.email_helper') }}

@if($errors->has('phone'))

{{ $errors->first('phone') }}

@endif

{{ trans('cruds.client.fields.phone_helper') }}

@if($errors->has('website'))

{{ $errors->first('website') }}

@endif

{{ trans('cruds.client.fields.website_helper') }}

@if($errors->has('skype'))

{{ $errors->first('skype') }}

@endif

{{ trans('cruds.client.fields.skype_helper') }}

@if($errors->has('country'))

{{ $errors->first('country') }}

@endif

{{ trans('cruds.client.fields.country_helper') }}

@if($errors->has('status_id'))

{{ $errors->first('status_id') }}

@endif
@endsection