@extends('layouts.app') @section('title', 'Instructors | ' . $websiteSetting->app_name) @section('description', 'Meet the experienced instructors at ' . $websiteSetting->app_name . ' who will guide you through our courses.') @section('keywords', 'instructors, experts, teachers, ' . $websiteSetting->app_name) @section('content')

{{ __('messages.meet_expert_title') }}

{{ __('messages.meet_expert_subtitle') }}

@forelse ($instructors as $instructor)
{{ $instructor->user->name }}
{{ $instructor->user->name }}

{{ $instructor->organization }}

{{ $instructor->experience_years }}+ Years Experience

@empty

{{ __('messages.no_instructors') }}

{{ __('messages.updating_instructors') }}

@endforelse
@endsection