@extends('layouts.app') @section('content')

Add New Position

{{ $company->name }} - Create Position

Back to Positions
Position Information
@csrf
@error('title')
{{ $message }}
@enderror
@error('department_id')
{{ $message }}
@enderror Link this position to a specific department
@error('description')
{{ $message }}
@enderror Optional: Describe the role and its responsibilities
Salary Range (Optional)
RM @error('min_salary')
{{ $message }}
@enderror
RM @error('max_salary')
{{ $message }}
@enderror
Cancel
Tips
  • Use specific, clear job titles
  • Link positions to departments for better organization
  • Salary ranges help with compensation planning
  • Inactive positions won't appear in employee forms
  • You can edit position information later
Examples
Common position titles:
  • • Software Engineer
  • • Marketing Manager
  • • Sales Representative
  • • HR Specialist
  • • Customer Support Agent
  • • Financial Analyst
@if($departments->count() === 0)
No departments found.
Create a department first
@endif
@endsection