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

Notification Message

{{ $mode }} Notification Message

@if(check_route_access('user.list'))
@if(check_route_access('notification.message.list')) Notification Message @endif
@endif
@include('admin.includes.status')
{{ csrf_field() }}
notification_text : old('notification_text') }}" >
@if ($errors->has('notification_text')){{ $errors->first('notification_text') }}@endif
notification_message : old('notification_msg') }}" >
@if ($errors->has('notification_msg')){{ $errors->first('notification_msg') }}@endif
@endsection