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

@can ('edit', $currentUser) {{ link_to_route('users.edit', 'Edit Data', [$currentUser->id], ['class' => 'btn btn-warning']) }} @endcan {{ link_to_route('users.chart', 'Lihat Bagan Keluarga', [$currentUser->id], ['class' => 'btn btn-default']) }} {{ link_to_route('users.tree', 'Lihat Pohon Keluarga', [$currentUser->id], ['class' => 'btn btn-default']) }}
{{ $currentUser->name }} Profil

@include('users.partials.profile', ['user' => $currentUser]) @include('users.partials.siblings', ['user' => $currentUser])
@include('users.partials.parent-spouse', ['user' => $currentUser]) @include('users.partials.childs', ['user' => $currentUser])
@endsection