@extends("layout.main") @section("content") @if ($tab == "account")
Change Password
Current password
New password
Confirm password
@endif @if ($tab == "data")

Here is a list of all the data associated with your current session.

@foreach ($session as $k=>$v) @endforeach
Key Data
{{ $k }} {{ json_encode($v) }}

And here is the contents of your user's database record.

@foreach ($user->_data as $k=>$v) @endforeach
Key Data
{{ $k }} {{ json_encode($v) }}

And that's it. That's the sum total of the data we currently store.

@endif @endsection