@extends('layouts.app', ['breadcrumbs' => [ ['href'=> route('dashboard'), 'text'=> 'Dashboard'], ['href'=> route('profile.show'), 'text'=> 'Profile' , 'active'] ]]) @section('title', __('Profile')) @section('page_heading', __('Profile')) @section('content') @if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') @endif @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
@livewire('profile.update-password-form')
@endif @if (Laravel\Fortify\Features::canManageTwoFactorAuthentication()) @livewire('profile.two-factor-authentication-form') @endif @livewire('profile.logout-other-browser-sessions-form') @endsection