@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.client.title_singular') }}
@method('POST') @csrf
@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'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.client.fields.status_helper') }}
@endsection