@extends('layouts.engine') @section('header') @endsection @section('content')

Send Mail to {{ $user->name }}

@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif
    @csrf
    @endsection