@extends('layouts.branch') @section('title', 'Edit Employee') @section('header', 'Modify Employee Profile') @push('styles') @endpush @section('content')
@include('partials.branch._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Employees', 'url' => route('branch.employees.index')], ['name' => 'Edit', 'url' => route('branch.employees.edit', $employee)] ] ])
@csrf @method('PUT') @if($errors->any())

Update Errors

Please resolve the following issues to update the profile

    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Profile Photography

Update or re-capture employee profile picture.

Updating the photo will replace the current profile image.

Basic Information

Update identity and personal details.

@error('type')

{{ $message }}

@enderror
@error('full_name')

{{ $message }}

@enderror
@error('role')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('next_of_kin_phone')

{{ $message }}

@enderror

Shift & Duty Management

Operational timings and benefits.

Identity Documents

Manage multiple government IDs.

Bank Financial Details

Salary transfer information.

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