@extends('layouts.app') @section('style') @endsection @section('sub-header') @section('content')
@if(session('alert-green'))
{{ session('alert-green') }}
@endif @if(session('alert-danger'))
{{ session('alert-danger') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
* {{$error}}
@endforeach
@endif
@csrf @include('Employment::form.employee-form')
@endsection @section('script') @endsection