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

Notification Type

{{ $mode }} Notification Type

@if(check_route_access('user.list'))
@if(check_route_access('notification.type.list')) Notification Type @endif
@endif
@include('admin.includes.status')
{{ csrf_field() }}
notification_key : old('notification_key') }}" >
@if ($errors->has('notification_key')){{ $errors->first('notification_key') }}@endif
notification_name : old('notification_name') }}" >
@if ($errors->has('notification_name')){{ $errors->first('notification_name') }}@endif
@if ($errors->has('visible_to_user')){{ $errors->first('visible_to_user') }}@endif
@if ($errors->has('notification_mode')){{ $errors->first('notification_mode') }}@endif
@endsection @section('scripts') @endsection