@extends('layouts.app', ['path' => 'payroll.structures']) @section('title', 'Create Payroll Structure') @section('content') @can('payroll_structures.create')
@include('partials.new_alerts')
Add Payroll Structure
@csrf
{{-- @if ($errors->has('name')) {{ $errors->first('name') }} @endif --}}
{{-- @if ($errors->has('currency')) {{ $errors->first('currency') }} @endif --}}
{{-- @if ($errors->has('tax_structure_id')) {{ $errors->first('tax_structure_id') }} @endif --}}
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{-- @if ($errors->has('status')) {{ $errors->first('status') }} @endif --}}
{{-- --}} Payroll Items

No pay items added yet. Click "New" to add your first pay item.

@if ($errors->has('pay_items'))
{{ $errors->first('pay_items') }}
@endif
@endcan @endsection @push('scripts') @endpush