@extends('layouts.skeleton') @section('content')
@if (session('status'))
{{ session('status') }}
@endif

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

@if (! auth()->user()->account->hasLimitations())

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

@endif
{{ csrf_field() }} {{-- This check is for the cultures that are used to say the last name first --}} @if (auth()->user()->getNameOrderForForms() == 'firstname')
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@else
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@endif
{{ trans('app.cancel') }}
@endsection