@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Users List') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content') @if (session()->has('success')) {{ session()->get('success') }} @endif Add Other Field Create Other Field @include('admin.otherField.create') id Name Type edit @foreach ($other as $item) {{ $item->id }} {{ $item->name }} {{ $item->type }} @include('admin.otherField.edit') @csrf @method('delete') @endforeach @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection