@extends('layouts.skeleton') @section('content')

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

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

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

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