@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('Email Template')}} @endsection @section('content')
@include('backend.partials.message')

{{__("Email Template")}}

@if($errors->any()) @foreach($errors->all() as $error)
{{$error}}
@endforeach @endif
@csrf
use your web mail here
@username Will replace by username of user and @company will be replaced by site title also @message will be replced by dynamically with message.
@endsection @section('script') @endsection