@extends('layouts.app') @section('content') @if (session('status'))
{{ session('status') }}
@endif
You are logged in!
@csrf

@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updateProfileInformation())) @include('profile.update-profile-information-form') @endif @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords())) @include('profile.update-password-form') @endif @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::twoFactorAuthentication())) @include('profile.two-factor-authentication-form') @endif @endsection