@extends('layouts.master') @section('title') Perfil @endsection @section('css') @endsection @section('content') @php $staff = App\Models\Staff::where('user_id', Auth::user()->id)->first(); $user = Auth::user(); $date_created = \Carbon\Carbon::parse($user->created_at)->locale('es')->isoFormat('D [de] MMMM [de] YYYY'); @endphp
user-img

{{ $user->name }}

{{ $staff != null ? $staff->role->role_name : 'Administrador' }}

@csrf
Info
Nombre Completo {{ $user->name }}
Rol {{ $staff != null ? $staff->role->role_name : 'Administrador' }}
Usuario {{ $user->username }}
Nueva Contraseña
Confirmar Contraseña
{{--
Sobre la App de Napoleon Team

Hi I'm Anna Adame, It will be as simple as Occidental; in fact, it will be Occidental. To an English person, it will seem like simplified English, as a skeptical Cambridge friend of mine told me what Occidental is European languages are members of the same family.

Rol :

Redactor
--}}
@endsection @section('script') @endsection