@extends('partials.default')
@section('content')
Profile / {{$user->name}}
@csrf
Personal Information
{{$user->dateofbirth}}
{{$user->global_id}}
Area of Expertise
@foreach($user_expertise as $e)
{{$e->title}}
@endforeach
Projects of Interest
@foreach($user_interest as $e)
{{$e->title}}
@endforeach
@endsection