@extends('layouts.app') @section('title', 'My Profile') @section('content')
My Profile
@if(session('success')) @endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
Email cannot be changed
Role cannot be changed
@endsection