@extends('home.partial.layout') @section('content') Employee Information Home Employee Onboarding Employee Information @if ($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(Session::has('error')) {{ session('error') }} @endif Employee Information Education / Comapany Information @can('view_payroll_basics') Payroll Information @endcan @can('view_attachments') Files / Attachments @endcan @include("employee.partials.main-info") @include("employee.partials.other-info") @include("employee.partials.payroll-info") @include("employee.partials.file-info") @endsection @section('script') @endsection