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

< {{ $contact->name }}

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

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