@extends('layout.side-menu') @section('subhead') Profile @endsection @section('breadcrumb') @endsection @section('subcontent')

{{ $user->name }}

Midone Laravel Admin Dashboard Starter Kit
{{ $user->name }}
{{ $user->email }}
{{ $user->gender }}
@foreach ($user->getRoleNames() as $rol) {{ $rol }} @endforeach
@php $tab = 'account-and-profile' @endphp
@include('pages.profile.fields', ['model' => $user])
@csrf @method('PUT')
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@if ($errors->has('password_confirmation'))
{{ $errors->first('password_confirmation') }}
@endif
@endsection @push('scripts') @endpush