@extends('layouts.main') @section('content')

Account Settings

Manage your account privacy and profile information.

@if (session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
Personal Information

Update your personal details.

Education

Add your education details.

Master Education

Add your education details.

Professional Details

Update your professional information.

@php $experiences = old( 'experience', $user->experience ? json_decode($user->experience, true) : [''], ); $titles = old( 'higher_degree', $user->higher_degree ? json_decode($user->higher_degree, true) : [''], ); @endphp @foreach ($experiences as $key => $experience)
@if ($key != 0) @endif
@endforeach
@php $languages = old( 'languages', $user->languages ? json_decode($user->languages, true) : [''] ); @endphp @foreach ($languages as $key => $language)
{{-- Remove Button --}} @if ($key != 0) @endif
@endforeach
{{-- Script --}}
@php $expertiseList = old( 'expertise', $user->expertise ? json_decode($user->expertise, true) : [''], ); $skillsList = old( 'skills', $user->skills ? json_decode($user->skills, true) : [''], ); @endphp @foreach ($expertiseList as $key => $expertise)
@if ($key != 0) @endif
@endforeach
Membership / Association

Add membership and certificate details.

@php $membershipList = old( 'membership_association', $user->membership_association ? json_decode($user->membership_association, true) : [''], ); $certificateList = old( 'old_membership_certificate', $user->membership_certificate ? json_decode($user->membership_certificate, true) : [''], ); @endphp @foreach ($membershipList as $key => $membership)
@error('membership_association.' . $key)
{{ $message }}
@enderror
@error('membership_certificate.' . $key)
{{ $message }}
@enderror @if (!empty($certificateList[$key])) View File @endif
@if ($key != 0) @endif
@endforeach
Certificates & Achievements

Add certificates and awards.

View File
@endsection