@component('emails.layouts.html', ['subject' => __('Your profile has been updated')]) {{-- Greeting --}}

{{ __('Hello :name,', ['name' => $profile->full_name ?? $profile->name]) }}

{{-- Main message --}}

{!! __('An administrator has made changes to your profile on :appname.', ['appname' => config('app.name')]) !!}

@if(!empty($changedFields))

{{ __('Changed fields:') }}

@endif

{{ __('Please review these changes by logging into your account.') }}

{{-- Button --}} {{-- Closing --}}

{{ timebank_config('mail.platform_sign_off_signature.' . app()->getLocale()) ?? timebank_config('mail.platform_sign_off_signature.en', 'See you around!') }}

@endcomponent