@extends('layouts.backend.master') @section('title', e(__('My Profile'))) @section('content-width-class', '') @section('content')
@csrf
dashboard
  • {{__('Role') }} @foreach($superUser->roles as $role) {{ formatRole($role->name) }} @endforeach
  • {{__('Email') }} {{ $superUser->email }}
@if (count($superUser->roles) > 1)
@endif
@if($errors->has('name')) {{ $errors->first('name') }} @endif
@if($errors->has('email')) {{ $errors->first('email') }} @endif
{{__('If you change email address, you will need to verify again.') }}
@if($errors->has('old_password')) {{ $errors->first('old_password') }} @endif
@if($errors->has('password')) {{ $errors->first('password') }} @endif
@if($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@include('backend.super_user.settings.2fa')
@endsection @push('scripts') @endpush