@php use Carbon\Carbon; $title = $user->name; @endphp @extends('layouts.app') @section('title', $title) @section('content')
@include('shared.button', ['type' => 'back', 'url' => route('users.index')]) @include('shared.title', [$title]) @include('shared.fake-div')

{{-- Error Messages --}} @if ($errors->any())
Please fix the following errors:
@endif
@csrf @method('PATCH')
@include('shared.date', ['name' => 'birthday', 'id' => 'birthday', 'to' => 'today', 'value' => ($user->Profile?->birthday ?? '')])

@endsection