@extends('admin.layouts.app') @php if(!empty($id)){ $mode = "Edit"; $action = route('email.notification.edit',$id); } else { $id = 0; } @endphp @section('content')

Email Notification

{{ $mode }} Email Notification

@if(check_route_access('user.list'))
@if(check_route_access('email.notification.list')) Email Notification @endif
@endif
@include('admin.includes.status')
{{ csrf_field() }}
subject : old('subject') }}" >
@if ($errors->has('subject')){{ $errors->first('subject') }}@endif
@if ($errors->has('send_to')){{ $errors->first('send_to') }}@endif
send_to_admin : old('send_to_admin') }}" >
send_cc : old('send_cc') }}" >
@if ($errors->has('send_cc')){{ $errors->first('send_cc') }}@endif
@if ($errors->has('text')){{ $errors->first('text') }}@endif
@endsection @section('scripts') @endsection