@extends('superadmin.layouts.admin', ['title' => 'Customer']) @section('content')

All Customer Data

@if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if(\Session::has('success'))

{{\Session::get('success')}}

@endif @if(\Session::has('Delete'))

{{\Session::get('Delete')}}

@endif
Id First Name
1 name test
@endsection