@extends('layout.master') @section('content')

Mail

@csrf
@if ($errors->has('to'))
{{ $errors->first('to') }}
@endif
@if ($errors->has('subject'))
{{ $errors->first('subject') }}
@endif
@if ($errors->has('content'))
{{ $errors->first('content') }}
@endif
@if ($errors->has('file'))
{{ $errors->first('file') }}
@endif
@endsection