@extends('layout/admin') @section('tittle', 'Daftar Kategori Dosen') @section('container')

Tambah Kategori

@if(!$kategori)
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@else
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@endif

@yield('tittle')

@foreach($kategoris as $k) @endforeach
Nama Actions
{{$k->nama}}
@endsection