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

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

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

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

@endif
@endsection