@extends('layouts.skeleton') @section('content')
@if ($isContactMissing)

{{ trans('people.people_add_missing') }}

@else

{{ trans('people.people_add_title') }}

@endif @if (! $accountHasLimitations)

{!! trans('people.people_add_import', ['url' => route('settings.import')]) !!}

@endif
@if (session('status'))
{{ session('status') }}
@endif @include('partials.errors')
@csrf
{{-- This check is for the cultures that are used to say the last name first --}} @if ($formNameOrder == 'firstname')
@else
@endif
{{-- Form actions --}}
@endsection