{{ __('Profile Information') }} {{ __('Update your account\'s profile information and email address.') }} {{ __('Saved.') }}

{{__('All fields marked * are required')}}

@if (Laravel\Jetstream\Jetstream::managesProfilePhotos())
{{ __('New Photo') }} @if ($this->user->profile_photo_path) {{ __('Remove Photo') }} @endif
@error('photo')

{{$message}}

@enderror
@endif
@php ($genders = ['Male', 'Female']) @foreach ($genders as $gender) @endforeach
@livewire('nationality-and-state-input-fields', ['nationality' => ucfirst($this->user->nationality), 'state' => ucfirst($this->user->state)])
{{-- listen for change in nationality and state event and set it as the value of their respective state variable. The values of $state is passed on form submit. therefore we set the selected nationality using the browser event fired --}} @php ($religions = ['Christianity', 'Islam', 'Hinduism', 'Buddhism', 'Other']) @foreach ($religions as $religion) @endforeach @php ($bloodGroups = ['A+', 'A-', 'B+', 'B-', 'AB+', 'Ab-', 'O+', 'O-']) @foreach ($bloodGroups as $bloodGroup) @endforeach
{{ __('Save') }}