Laravel 5.7 Send an email verification on newly created user
问题 Based on this documentation you can easily create a user email verification when someone signing up by them self, but how to send an email verification when admins created the account for their users? I already tried with this approach <?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Hash; use Illuminate\Foundation\Auth\VerifiesEmails; class TeacherController extends Controller { use VerifiesEmails; ... // Other basic functions public function