12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!--
- Copyright (C) 2022 Echedey López Romero <elr@disroot.org>
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- -->
- @extends('layouts.app')
- @section('content')
- <div class="container">
- <div class="row mb-3">
- <h1 class="col-12 mb-0 text-center">User information</h1>
- </div>
- <div class="row">
- <div class="col-xl-5 col-lg-6 col-md-8 col-12 mx-auto">
- <div class="container">
- <div class="row mb-3">
- <span class="col-xl-4 col-12 my-xl-auto mb-2">Name</span>
- <span class="col-xl-8 col-12 mb-xl-0 mb-2">{{ $user->name }}</span>
- </div>
- <div class="row mb-3">
- <span class="col-xl-4 col-12 my-xl-auto mb-2">E-Mail</span>
- <span class="col-xl-8 col-12 mb-xl-0 mb-2">{{ $user->email }}</span>
- </div>
- <div class="row mb-3">
- <span class="col-xl-4 col-12 my-xl-auto mb-2">Image</span>
- <img src="{{ $user->image }}" class="col-xl-6 col-12 mb-xl-0 mb-2 img-thumbnail" alt="{{ $user->name }}"/>
- </div>
- <div class="row">
- <span class="col-xl-4 col-12 my-xl-auto mb-2">Role</span>
- <span class="col-xl-8 col-12 mb-xl-0 mb-2">{{ $role->name }}</span>
- </div>
- </div>
- </div>
- </div>
- </div>
- @endsection
|