{{ __('Profile') }}

@if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') @endif

Mobile Phone Number

Add or change your mobile phone number.

@if(\Auth::user()->phone && \Auth::user()->mobile_verified == 1) Your mobile phone is set up and verified

You're all set.

@elseif(\Auth::user()->phone && \Auth::user()->mobile_verified == 0) Your mobile phone has been added but not yet verified

Click the Verify button below to complete your setup.

@else Your profile does not currently have a verified mobile phone

Click the button below to add and verify your phone.

@endif

{{--

Adding your mobile phone number will allow the application to send SMS text notifications to your device.

--}}
Phone number: {{ preg_replace("/^(\d{3})(\d{3})(\d{4})$/", "($1) $2-$3", \Auth::user()->phone) }} --}}
@if(\Auth::user()->mobile_verified)

Delete Number @else

@endif

Dark mode

Enable or disable dark mode.

@if(\Auth::user()->is_darkmode == 0) Dark mode is not enabled. @else Dark mode is enabled. @endif

Select how you’d like the application to appear on your device. Click the button to toggle between light and dark themes.

@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')
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
@livewire('profile.delete-user-form')
@endif