Instructor Management

Create and manage instructor accounts, bios, and social presence.

Add Instructor
@if(session('success'))
{{ session('success') }}
@endif
Clear
@forelse ($instructors as $instructor) @empty @endforelse
Instructor Bio Status Actions
@if ($instructor->avatar) {{ $instructor->name }} @else {{ strtoupper(substr($instructor->name, 0, 1)) }} @endif

{{ $instructor->name }}

{{ $instructor->email }}

{{ \Illuminate\Support\Str::limit($instructor->bio, 80) ?: 'No bio added yet.' }} {{ ucfirst($instructor->status) }} Edit
@csrf @method('DELETE')
No instructors found yet.
{{ $instructors->links() }}