@extends('layouts.branch') @section('title', 'Add Employee') @section('header', 'Register New Employee') @push('styles') @endpush @section('content')
@include('partials.branch._breadcrumbs', [ 'breadcrumbs' => [ ['name' => 'Employees', 'url' => route('branch.employees.index')], ['name' => 'Create', 'url' => route('branch.employees.create')] ] ])
@csrf @if($errors->any())

Registration Errors

Please correct the following issues to continue

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

Profile Photography

Capture or upload employee profile picture.

Supports JPG, PNG (Max 5MB). Use camera for instant capture.

Basic Information

Core identity and personal details e.g. role, email and name.

@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

Attach multiple government IDs.

Bank Financial Details

Salary transfer information.

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