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

Change Employee Password

@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@stop