@extends('employees-mgmt.base') @section('action-content')
Update employee
@if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif
@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('middlename')) {{ $errors->first('middlename') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('zip')) {{ $errors->first('zip') }} @endif
@if ($errors->has('age')) {{ $errors->first('age') }} @endif
@endsection