@extends('Layouts.Application') @section('MainContent')
@if (session('flash_success'))
{{ session('flash_success') }}
@endif @if (session('flash_warning'))
{{ session('flash_warning') }}
@endif
@foreach ($allUser as $data) @endforeach
User Name Email Phone Action
{{ $data->full_name }} {{ $data->email }} {{ ($data->phone_no) }} Manage Branch
@endsection