@extends('layouts.app') @section('content')
@if(auth()->user()->role_id==1 || auth()->user()->role_id==4 || $user->id==auth()->user()->id) Промяна @endif

Показване на потребител

Име: {{ $user->name }}
Роля: {{ $user->role->name }}
Град: {{ $user->city_id!=0 ? $user->city->name : 'Всички'}}
Телефон: {{ $user->phone }}
И-мейл: {{ $user->email }}
Активен: {{ $user->active==1 ? 'Да' : 'Не' }}
@if($user->color!=null)
Цвят: {{ $user->color }}
@endif
@endsection