@extends('adminlayout.admin') @section('content')
Add

Employee List

@if($errors->any())

{{ implode('', $errors->all(':message')) }}

@endif
@php $i=1; @endphp @foreach($employees as $data) @endforeach
S.no User Id Name Email Phone No. Password Status Action
{{$i++}} {{($data->status) == 1 ? 'Active' : 'Inactive'}} Change Password
@endsection