You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
1.1 KiB

@extends('layouts.app')
@section('content')
<ul class="breadcrumb hidden-print">
<li class="active">{{ trans('auth.profile') }}</li>
</ul>
<div class="row">
<div class="col-md-7">
<div class="panel panel-default">
<table class="table">
<tr><th>{{ trans('user.user_id') }}</th><td>{{ auth()->user()->id }}</td></tr>
<tr>
<th>{{ trans('user.name') }}</th>
<td>{{ auth()->user()->name }}</td>
</tr>
<tr>
<th>{{ trans('user.email') }}</th>
<td>{{ auth()->user()->email }}</td>
</tr>
<tr>
<th>{{ trans('user.api_token') }}</th>
<td><code>{{ auth()->user()->api_token }}</code></td>
</tr>
</table>
<div class="panel-footer">
{{ link_to_route('users.profile.edit', trans('auth.profile_edit'), [], ['class' => 'btn btn-info']) }}
</div>
</div>
</div>
</div>
@endsection