{{ (@$updatenotifications) ? 'Edit Notification' : 'Add Notification' }}

{{ Form::open( [ 'method'=> 'POST', 'url' => route('updatenotifications.store'), 'id'=> 'updatenotifications_save', 'enctype' => 'multipart/form-data']) }} {{Form::hidden('id',@$updatenotifications->id) }}
{{Form::text( 'tag', ((@$updatenotifications->id) ? @$updatenotifications->tag : ""), [ "class" => "form-control", "placeholder" => "" ]) }}
{{Form::textarea( 'title', ((@$updatenotifications->id) ? @$updatenotifications->title : ""), [ "class" => "form-control", "rows" => 3, "placeholder" => "" ]) }}
{{ Form::radio( "status", 1, (((@$updatenotifications->id) && (@$updatenotifications->status == '1')) ? true : ('1' === '1' ? true : false) ), [ 'id' => 'status_Active', 'class'=>'minimal', ]) }} {{ Form::radio( "status", 0, (((@$updatenotifications->id) && (@$updatenotifications->status == '0')) ? true : ('1' === '0' ? true : false) ), [ 'id' => 'status_Inactive', 'class'=>'minimal', ]) }}
{{ Form::close() }}