@extends('layouts.app') @section('content')
@include('layouts.sidebar')
@include('layouts.navbar')

Edit Employee {{$Employee->name}} ( {{$Employee->employee_id}} ) :

@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('id'))
{{ $errors->first('id') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@endsection