@extends('emails.layouts.main')
@section('title', 'Instructor Form Submission Notification')
@section('content')
|
New Instructor Form
|
Hello,
You have received a new instructor form submission.
Please review the details below:
Name: {{ $form->first_name }} {{ $form->last_name }}
Email: {{ $form->email }}
Can Publish English Courses: {{ $form->can_publish_english ? 'Yes' : 'No' }}
Has Published Courses: {{ $form->has_published_courses ? 'Yes' : 'No' }}
Ip Address: {{ $form->ip_address }}
User Agent: {{ $form->user_agent }}
|
|
|
@endsection