{{-- resources/views/payroll/upload.blade.php --}} @extends('layouts.app') @section('content')

Payroll Data Upload

Upload and process payroll data files with advanced validation and security

@if(session('success'))
Success! {{ session('success') }}
@endif
File Upload
@csrf
Drop your payroll file here
or click to browse files
Supported formats: Excel (.xlsx, .xls), CSV (.csv)
Upload Requirements
  • File must be in Excel (.xlsx, .xls) or CSV format
  • Maximum file size: 10MB
  • Required columns: Employee ID, Name, Salary, Department
  • Data should be properly formatted
  • No empty rows or columns
  • Unicode encoding supported
Upload History

Recent uploads will appear here

Processing Upload...

Please wait while we process your payroll data

@endsection