@extends('layouts.skeleton') @section('content')
{{-- Breadcrumb --}}

< {{ $contact->name }}

{{ trans('people.information_edit_title', ['name' => $contact->first_name]) }}

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

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

@endif
@method('PUT') {{ csrf_field() }} @include('partials.errors') {{-- Name --}}
{{-- This check is for the cultures that are used to say the last name first --}}
@if (auth()->user()->getNameOrderForForms() == 'firstname')
@else
@endif
{{-- Gender --}}
{{-- Description --}}
{{ trans('people.information_edit_description_help') }}
{{-- Avatar --}}
{{ trans('people.information_edit_max_size', ['size' => config('monica.max_upload_size')]) }}
{{-- Birthdate --}} {{-- Is the contact deceased? --}}
{{-- Form actions --}}
@endsection