@extends('admin.layout.main') @section('title', 'Profil - ') @section('content')

My Profile

@if ($errors->any())
@foreach ($errors->all() as $error)
  • {{ $nomer++ }}. {{ $error }}
  • @endforeach
    @endif
    @csrf @method('POST')

    {{ Auth::user()->name }}

    {{ Auth::user()->role }}

    @endsection