@extends('layouts.app') @section('title', __('Notification')) @section('content')

Notification

@component('components.widget', ['class' => 'box-primary'])
@csrf
All Web App What's App SMS E-mail

{!! Form::label('subject', __('Subject').':') !!} {!! Form::textarea('subject', $notification_template['subject'], ['class' => 'form-control', 'placeholder' => __('Subject'), 'rows' => 1]); !!}
{!! Form::label('email_body', __('Body Message').':') !!} {!! Form::textarea('email_body', $notification_template['email_body'], ['class' => 'form-control', 'placeholder' => __('Body Message'), 'rows' => 4]); !!}


@endcomponent {!! Form::close() !!}
@endsection @section('javascript') @endsection