@extends('frontend.layouts.app') @section('title', 'Update Profile') @section('content')
@include('_message')
{{-- Images --}}
@if ($profilePhotos && is_array($profilePhotos) && isset($profilePhotos[0])) Profile Photo @else Default Profile @endif
@csrf @method('PUT')
Choose File (Max: 5 images only)

Support Format : JPG , JPEG , PNG

Size should not exceed 100MB in total. Each image can be a maximum of 20MB.

@if (isset($profilePhotos) && count($profilePhotos))
@foreach ($profilePhotos as $index => $photo)
Profile Photo
  • Image {{ sprintf('%02d', $index + 1) }}
  • {{--
  • @if (file_exists($photo)) {{ date('d M Y', filemtime($photo)) }} | {{ number_format(filesize($photo) / 1024, 2) }} KB @else N/A | N/A @endif
  • --}}
@php $userId = $user->id; @endphp
@endforeach
@else

No More Photos Available

@endif
@csrf
{{-- General Information --}}

{{-- Personal Information --}}

{{-- Professional Information --}}

{{-- Lifestyle Information --}}

{{-- Family Information --}}

{{-- Social Media links --}} {{--

--}} {{-- Partner Prefrences --}}

{{-- Image Deletion Confirmation Modal --}} @push('scripts') @endpush @endsection