@extends('home.partial.layout') @section('content')

Employee Information

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('error'))
{{ session('error') }}
@endif
@include("employee.partials.main-info")
@include("employee.partials.other-info")
@include("employee.partials.payroll-info")
@include("employee.partials.file-info")
 
@endsection @section('script') @endsection