@extends('layouts.adminapp') @section('content')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ csrf_field() }}

Modify Employee Profile

@if ($errors->has('lastname')) {{ $errors->first('lastname') }} @endif
@if ($errors->has('firstname')) {{ $errors->first('firstname') }} @endif
@if ($errors->has('middlename')) {{ $errors->first('middlename') }} @endif
@if ($errors->has('extensionname')) {{ $errors->first('extensionname') }} @endif
@if ($errors->has('idno')) {{ $errors->first('idno') }} @endif
@if ($errors->has('idno')) {{ $errors->first('idno') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@stop