@extends('layouts.app') @section('title', '사원 수정') @section('content')
{{-- 페이지 헤더 --}}
사원 목록으로

사원 수정

{{-- 수정 폼 --}}
{{-- 기본 정보 --}}

기본 정보

{{-- 이름 --}}
{{-- 표시 이름 --}}
{{-- 이메일 / 연락처 --}}
{{-- 주민등록번호 --}}
{{-- 근무 정보 --}}

근무 정보

{{-- 부서 --}}
{{-- 직급 / 직책 --}}
{{-- 입사일 / 퇴직일 / 상태 --}}
{{-- 주소 --}}
{{-- 비상연락처 --}}
{{-- 급여이체정보 --}}

급여이체정보

@php $bankAccount = $employee->bank_account ?? []; @endphp
{{-- 부양가족 정보 --}}

부양가족 정보

{{-- 버튼 --}}
취소
{{-- 첨부파일 --}}

첨부파일

{{-- 기존 파일 목록 --}}
@forelse($files ?? [] as $file)
{{ $file->original_name }} {{ number_format(($file->file_size ?? 0) / 1024, 0) }}KB
@empty

등록된 파일이 없습니다.

@endforelse
{{-- 파일 업로드 영역 --}}

파일을 드래그하거나 클릭하여 업로드

파일당 최대 20MB

{{-- 업로드 진행 상태 --}}
업로드 중...
{{-- 직급/직책 추가 모달 --}} @include('hr.employees.partials.position-add-modal') @endsection @push('scripts') @endpush