@extends('layout.mainlayout') @section('content')
@component('components.breadcrumb') @slot('title') Profile Settings @endslot @endcomponent @if (Auth()->user()->employee_type == '1')

General Settings

@if ($OnboardingTempRequestStatus == 1)
Note: Your profile is currently under review. Please check back later.
@endif
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('resource.form-sections.onboard-resource.onboarding-basicinfoform')
@include('resource.form-sections.onboard-resource.onboarding-personalinfoform')
@include('resource.form-sections.onboard-resource.onboarding-employmentinfoform')
@include('resource.form-sections.onboard-resource.onboarding-attachmentinfoform')
@csrf {{--
Change Password
--}}

Change Password

Notifications Settings

All Notifications

@else

General Settings

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@include('resource.form-sections.manage-overseas.personalInfoForm')
@include('resource.form-sections.manage-overseas.professionalInfoForm')
{{-- --}}
@csrf {{--
Change Password
--}}

Change Password

Notifications Settings

All Notifications

@endif
@push('scripts') @endpush @endsection