@component('mail::layout')
{{-- Header --}}
@slot('header')
@include('email.admin.includes.header')
@endslot
{{-- Body --}}
{{-- Greeting --}}
@if (! empty($greeting))
# {{ $greeting }}
@else
@if ($level === 'error')
# @lang('Whoops!')
@endif
@endif
{{-- Intro Lines --}}
Dear {{ $proctroing->studentname }},
We are sorry to inform you that your {{ $proctroing->coursename }} has not been approved. However, we have reset the course, and you have the option to retake it from the Dashboard.
@if (! empty($salutation)){{ $salutation }}
@endif {{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @include('email.admin.includes.footer') @endslot @endcomponent