@if (session('msg'))
{{ session('msg') }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Email Templates

@if (count($email_templates))
@foreach ($email_templates as $email_template) @endforeach
Type actions
{{$email_template->email_type}}
@endif
@endsection