@extends('app-new') @push('head-script') @endpush @push('content-header') @endpush @section('content') {!! Form::model($notification, ['method' => isset($notification) && $notification->id ? 'put' : 'post']) !!}
User Detail
Enter User Detail
{!! $errors->first('type', '') !!}
{{ trans('notification.notification_detail') }}
{{ trans('notification.enter_notification_detail') }}
{!! Form::text('title', old('title'), ['class' => 'form-control', 'id' => 'title']) !!} {!! $errors->first('title', '') !!}
{!! Form::textarea('description', old('description'), ['class' => 'form-control', 'id' => 'description']) !!} {!! $errors->first('description', '') !!}
*
{!! $errors->first('notification_type', '') !!}
{!! Form::close() !!} @endsection @push('footer-script') @endpush