@extends('layout.mainlayout') @section('content')
@component('components.breadcrumb') @slot('title') Profile Settings @endslot @endcomponent

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
@include('resource.form-sections.manage-overseas.personalInfoForm')
@include('resource.form-sections.manage-overseas.professionalInfoForm')
{{--
@csrf
Change Password
--}} {{--
Notifications Settings

You can customize this section to manage email/push alerts.

--}}
@push('scripts') @endpush @endsection