@extends('layouts.master') @section('styles') @endsection @section('content') @php $breadcrumbs = [ ['label' => 'Dashboard', 'url' => route('admin.dashboard')], ['label' => 'Admins', 'url' => '#', 'active' => true], ]; @endphp Add Admin @php $columns = [ ['checkbox' => true, 'class' => 'ps-4'], ['label' => 'Name'], ['label' => 'Email'], ['label' => 'Roles'], ['label' => 'Status'], ['label' => 'Created At'], ['label' => 'Action'], ]; @endphp @endsection @section('scripts') @include('layouts.components.common-script') @vite('resources/assets/js/select2.js') @endsection