@extends('admin.layout.layout') @section('content')

Users

@if ($message = Session::get('success')) @endif @if (Session::has('error')) @endif

Users List

@foreach ($users as $index => $user) @endforeach
SR no. Name Mobile Email Gender Action
{{ $index + 1 }} {{ $user->name }} {{ $user->mobile }} {{ $user->email }} {{ $user->gender }} View Edit
@csrf @method('DELETE')
Sr no. Name Mobile Email Gender Action
@endsection