@extends('employees-mgmt.base') @section('action-content')
Add new employee
{{ csrf_field() }}
@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
@if ($errors->has('department_id')) {{ $errors->first('department_id') }} @endif
@if ($errors->has('division_id')) {{ $errors->first('division_id') }} @endif
@endsection