@extends('admin.layout') @section('content')
@csrf
{{ __('Send Email') }}
{{ __('Back') }}
@if ($errors->has('subject'))

{{ $errors->first('subject') }}

@endif
@if ($errors->has('message'))

{{ $errors->first('message') }}

@endif
@endsection