'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Union councils of Pakistan

A sherwan or union council in Pakistan is an elected local government body consisting of 21 councillors, and headed by a nazim now called Chairman (which is equivalent to a mayor) and a naib nazim now called Vice Chairman (deputy). Union councils are the fifth tier of government in Pakistan and are often known as Village Councils in one province called Khyber Pakhtunkhwa and represented by a village council usually comprises a large village and surrounding areas, often including nearby small villages. The term Union or Village Council may be used for localities that are part of cities.

Headed by a union nazim, each union council has 13 elected members or councillors. In addition to four male and two female members elected directly, there are two male and two female representatives of the labour, a minority member, a union nazim and his deputy known as union naib nazim. Beside elected members, there are several government employees and functionaries in every union council, who report to the secretary of the union council. The latter is a civil servant appointed by the state.

Union Council

Union Council may be:

  • Union councils of Pakistan
  • Union Council (New Jersey)

  • Union Council (students' union)

    A Union Council is a body of elected or appointed representatives who represent students who are members of a students' union. Union Council's often have the power to hold the Union's Officers to account and to create new Union policies. The Council is usually not responsible for implementing Union policy. A policy passed by such a body usually has less authority than one passed by a general meeting of students or a referendum of all students in the Union.


    Podcasts:

    • Understand the Union council | UC chairman's Functions | Departments of local Government in Pakistan

      #Departments_of_Local_Government #UnionCouncil #UC #Chairman #Functions

      published: 23 Dec 2021
    • How Divorce becomes Effective | Proceeding in Union council / municipal corporation | law

      #divorcecertificate #unioncouncilproceedings #divorcelaw For Business inquiries Contact me here..advtamanna111@yahoo.com In this video you will learn about how how Divorce becomes Effective and how union council or municipal corporation / municipal committee conduct proceeding after divorce. How can i get divorce effectiveness certificate from concerned union cuncil after khula. talaq mosar certificate when a women receive decree and judgment sheet from court then she also have to adopt one more procedure that is to obtain divorce effectiveness certificate from union council. what documents are required for divorce effectiveness certificate. 1:judgement sheet 2:decree sheet 3:cnic photocopy 4:application to concerned union council and just send these document to concerned union co...

      published: 02 Dec 2020
    • Breaking News Nadra Service available from Union Council|Nadra service in Union Council

      Breaking News Nadra Service available from Union Council|Nadra service in Union Council Aslamoalikum! In this video we discussed about NADRA service ni union Council,how you can process your CNIC in Union Council. visit channel Playlists for more videos about NADRA process, Passport process etc. all videos about NADRA visit https://youtube.com/playlist?list=PLgXtc8e0RV-WQ-FwEhjbc6zRhmT3DWWwt pak identity online pak identity account pak identity account invalid credentials pak identity app pak identity biomatric nadra service ni union Council office nadra latest announcement nadra test pattern nadra jobs 2024 new jobs in nadra pak identity fingerprint pak identity account Kase banaye nadra CRC b form Kase banye FRC Kase banye pak identity payment method pak identity CNIC renewal p...

      published: 01 Jun 2024
    • How to get late Death Certificate from Nadra / Union council | Late death Registration

      #deathcertificate #latedeathcertificate #lateregistrationofdeath How to get late Death Certificate from Nadra? How to get late Death Certificate from Union Council? Late death Registration of deceased person. Union council ya Nadra se death certifcat kesy ley? Kya wafat ke bad hum 2 ya 3 saal bad bi death certifcate ley skhty hain? how to get late death certificate from Nadra /union council? How do I get a late death certificate? late death registration of deceased person. Ans: yes you can. A person can get death certificate from union council or nadra but in that case u have to consult lawyer who file the case ...Suit for declaration after 1 month court pass a decree so after getting decree from court then u have to register death in union council/ nadra then go to union council or nad...

      published: 21 Jun 2020
    • New fee schedule for birth and death certificates in union council.

      #unioncouncil#nadra#certificate

      published: 06 Apr 2023
    • Functions and Powers of Union Council (Chairman)

      Functions and Powers of Union Council (Chairman) | Zahid Farid #localgovernment #pakistan For More interesting and informative Videos please subscribe this Channel. Join us at; YouTube: https://www.youtube.com/@ZahidFaridOfficial Twitter: https://twitter.com/ZFaridOfficial Instagram: https://www.instagram.com/zahidfaridofficial https://www.youtube.com/c/ZahidFaridOfficial #ZahidFarid

      published: 28 Jul 2023
    • Talaq Moasar Certificate | Divorce Certificate after Divorce or Khulah | Union Council | TalaqNama

      Talaq Moasar Certificate | Divorce Certificate after Divorce or Khulah | Union Council | TalaqNama طلاق مئوثر سرٹیفیکیٹ حاصل کرنے کا طریقہ۔۔ طلاق۔ خلع کے بعد سرٹیفیکیٹ کیسے بنوائیں #talaqmoasarcertificate #talaq #khulah #divorce #unioncouncil #talaqnama #divorcecertificate #divorce_certificate #family #talaqnotice #dissolutionofmarriage #nikah #nikahnama For Appointment__ Mian Sadi Abbas Deoka Advocate High Court Head Office: Deoka Law Associates DLA also service all over Pakistan............ Oversease Pakistanis also contact us for their Legal services....... Call/Whatsapp: 03053081993 ____________ +923053081993 Office Location https://goo.gl/maps/Wq6MHCQNbPiJARTh9 Facebook https://www.facebook.com/dailylawpointdlp Whatsapp https://wa.me/923053081993 Twitter https://twitter.com/AdvM...

      published: 05 Dec 2022
    • How does the EU work (and why is it so complex)? | DW News

      The EU is complex. Even most Europeans struggle to understand which EU institution does what, who's in charge and how EU laws get passed. DW Reporter Anne-Sophie Brändlin breaks down everything you need to know about how the EU works and why it's so complicated. Because of course, there's a reason for that. Subscribe: https://www.youtube.com/user/deutschewelleenglish?sub_confirmation=1 #EUelections2019 For more news go to: http://www.dw.com/en/ Follow DW on social media: ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitter.com/dwnews ►Instagram: https://www.instagram.com/dw_stories/ Für Videos in deutscher Sprache besuchen Sie: https://www.youtube.com/channel/deutschewelle

      published: 17 May 2019
    • Union Minister Kiren Rijiju Reflects on PM Modi's Vision for Viksit Bharat

      Union Minister Shri Kiren Rijiju reflected on the past, sharing an instance when Prime Minister Modi urged ministers to focus more on work than on governance inclusivity for better results and progressive growth back in 2014. This served as an inspiration for the vision of Viksit Bharat by 2047. Check out some of our other popular videos: https://www.youtube.com/watch?v=g9BsMMkSC9A https://www.youtube.com/watch?v=Bo1AgQlOgiw&t=316s https://www.youtube.com/watch?v=GwbrSxd0WQ4 Spread the word #ViksitBharat #YuvaConnect #ModiGovernment #NewIndiaJunction Contribute to the conversation Drop a comment to let us know what you think! Be a part of the NIJ Community: Instagram: http://www.instagram.com/nijunction Facebook: http://www.facebook.com/nijunction Twitter: http://www.twitter.com/n...

      published: 18 Nov 2024
    • Legal Procedure Of Late Entry Birth Certificate Rejistration In Union Council |

      #educationforum2898 #union council #Birth Certificate Rejistration

      published: 16 Aug 2023
    developed with YouTube
    Understand the Union council | UC chairman's Functions | Departments of local Government in Pakistan
    5:42

    Understand the Union council | UC chairman's Functions | Departments of local Government in Pakistan

    • Order:
    • Duration: 5:42
    • Uploaded Date: 23 Dec 2021
    • views: 93289
    #Departments_of_Local_Government #UnionCouncil #UC #Chairman #Functions
    https://wn.com/Understand_The_Union_Council_|_Uc_Chairman's_Functions_|_Departments_Of_Local_Government_In_Pakistan
    How Divorce becomes Effective | Proceeding in Union council / municipal corporation | law
    6:14

    How Divorce becomes Effective | Proceeding in Union council / municipal corporation | law

    • Order:
    • Duration: 6:14
    • Uploaded Date: 02 Dec 2020
    • views: 70773
    #divorcecertificate #unioncouncilproceedings #divorcelaw For Business inquiries Contact me here..advtamanna111@yahoo.com In this video you will learn about how how Divorce becomes Effective and how union council or municipal corporation / municipal committee conduct proceeding after divorce. How can i get divorce effectiveness certificate from concerned union cuncil after khula. talaq mosar certificate when a women receive decree and judgment sheet from court then she also have to adopt one more procedure that is to obtain divorce effectiveness certificate from union council. what documents are required for divorce effectiveness certificate. 1:judgement sheet 2:decree sheet 3:cnic photocopy 4:application to concerned union council and just send these document to concerned union council by post and AD(Acknowledgment due) is necessary. then union council try for reconciliation between the parties. if both parties think they are agreed for compromise then compromise is possible but they have to compromise within 3 month. if they do not take any interest in union council proceeding .then a divorce effectiveness certificate issue to a women and then whenever she want to do second marriage she can there is no as such any restriction. ----------------------------------------------------------------------------------- Divorce effectiveness certificate from (UC) https://www.youtube.com/watch?v=JAqwJ_SaWdw ---------------------------------------------------------------------------- Divorce Certificate / Talaq Mosar Certificate in Oral Divorce https://www.youtube.com/watch?v=OaJuTy-qJWA
    https://wn.com/How_Divorce_Becomes_Effective_|_Proceeding_In_Union_Council_Municipal_Corporation_|_Law
    Breaking News Nadra Service available from Union Council|Nadra service in Union Council
    2:15

    Breaking News Nadra Service available from Union Council|Nadra service in Union Council

    • Order:
    • Duration: 2:15
    • Uploaded Date: 01 Jun 2024
    • views: 115
    Breaking News Nadra Service available from Union Council|Nadra service in Union Council Aslamoalikum! In this video we discussed about NADRA service ni union Council,how you can process your CNIC in Union Council. visit channel Playlists for more videos about NADRA process, Passport process etc. all videos about NADRA visit https://youtube.com/playlist?list=PLgXtc8e0RV-WQ-FwEhjbc6zRhmT3DWWwt pak identity online pak identity account pak identity account invalid credentials pak identity app pak identity biomatric nadra service ni union Council office nadra latest announcement nadra test pattern nadra jobs 2024 new jobs in nadra pak identity fingerprint pak identity account Kase banaye nadra CRC b form Kase banye FRC Kase banye pak identity payment method pak identity CNIC renewal pak identity FRC #nadra #passport follow on Facebook page Info Zone by Atif NADRA POC cancelations nadra POC benefits nadra POC verification #nadra_POC #nadra #passport #overseasnews #educationalvideo #unioncouncil #passport POC requirements details video link https://youtu.be/seemKSxhpjc?si=71MaQFpGd_xLDsJC How to create Pak identity Account link https://youtu.be/S83jBtn_Al0?si=WuLLIbZv1CdZwSfA How to apply online Passport link https://youtu.be/1gtPwt7lalo?si=AsyGb5dtvjOFkAF4 for more details information about NADRA and passport visit link https://youtube.com/playlist?list=PLgXtc8e0RV-WQ-FwEhjbc6zRhmT3DWWwt&si=z_xlpHDkgYnDK2Ag passport details https://youtube.com/playlist?list=PLgXtc8e0RV-WAWfBvU7mgPuijG2th0cn5&si=Jpz5MLKCSyJmCfsy how to make FRC NDRA FRC details NADRA family registration certificate online apply how to use pak identity app NDRA FRC kaise banaye NDRA FRC Kya ha what is NDRA FRC how to online apply CNIC #passport #onlineearning #nadra #viralvideo #FRC https://youtube.com/playlist?list=PLgXtc8e0RV-WAWfBvU7mgPuijG2th0cn5
    https://wn.com/Breaking_News_Nadra_Service_Available_From_Union_Council|Nadra_Service_In_Union_Council
    How to get late Death Certificate from Nadra / Union council | Late death Registration
    2:38

    How to get late Death Certificate from Nadra / Union council | Late death Registration

    • Order:
    • Duration: 2:38
    • Uploaded Date: 21 Jun 2020
    • views: 62749
    #deathcertificate #latedeathcertificate #lateregistrationofdeath How to get late Death Certificate from Nadra? How to get late Death Certificate from Union Council? Late death Registration of deceased person. Union council ya Nadra se death certifcat kesy ley? Kya wafat ke bad hum 2 ya 3 saal bad bi death certifcate ley skhty hain? how to get late death certificate from Nadra /union council? How do I get a late death certificate? late death registration of deceased person. Ans: yes you can. A person can get death certificate from union council or nadra but in that case u have to consult lawyer who file the case ...Suit for declaration after 1 month court pass a decree so after getting decree from court then u have to register death in union council/ nadra then go to union council or nadra because nadra or union council do not issue death certificate if 1 or 2 month expired after death. so if limit has crossed nadra or union council demand a decree of court then they will issue death certificate to you.
    https://wn.com/How_To_Get_Late_Death_Certificate_From_Nadra_Union_Council_|_Late_Death_Registration
    New fee schedule for birth and death certificates in union council.
    0:17

    New fee schedule for birth and death certificates in union council.

    • Order:
    • Duration: 0:17
    • Uploaded Date: 06 Apr 2023
    • views: 2007
    #unioncouncil#nadra#certificate
    https://wn.com/New_Fee_Schedule_For_Birth_And_Death_Certificates_In_Union_Council.
    Functions and Powers of Union Council (Chairman)
    14:25

    Functions and Powers of Union Council (Chairman)

    • Order:
    • Duration: 14:25
    • Uploaded Date: 28 Jul 2023
    • views: 16549
    Functions and Powers of Union Council (Chairman) | Zahid Farid #localgovernment #pakistan For More interesting and informative Videos please subscribe this Channel. Join us at; YouTube: https://www.youtube.com/@ZahidFaridOfficial Twitter: https://twitter.com/ZFaridOfficial Instagram: https://www.instagram.com/zahidfaridofficial https://www.youtube.com/c/ZahidFaridOfficial #ZahidFarid
    https://wn.com/Functions_And_Powers_Of_Union_Council_(Chairman)
    Talaq Moasar Certificate | Divorce  Certificate  after Divorce or Khulah | Union Council | TalaqNama
    3:07

    Talaq Moasar Certificate | Divorce Certificate after Divorce or Khulah | Union Council | TalaqNama

    • Order:
    • Duration: 3:07
    • Uploaded Date: 05 Dec 2022
    • views: 40005
    Talaq Moasar Certificate | Divorce Certificate after Divorce or Khulah | Union Council | TalaqNama طلاق مئوثر سرٹیفیکیٹ حاصل کرنے کا طریقہ۔۔ طلاق۔ خلع کے بعد سرٹیفیکیٹ کیسے بنوائیں #talaqmoasarcertificate #talaq #khulah #divorce #unioncouncil #talaqnama #divorcecertificate #divorce_certificate #family #talaqnotice #dissolutionofmarriage #nikah #nikahnama For Appointment__ Mian Sadi Abbas Deoka Advocate High Court Head Office: Deoka Law Associates DLA also service all over Pakistan............ Oversease Pakistanis also contact us for their Legal services....... Call/Whatsapp: 03053081993 ____________ +923053081993 Office Location https://goo.gl/maps/Wq6MHCQNbPiJARTh9 Facebook https://www.facebook.com/dailylawpointdlp Whatsapp https://wa.me/923053081993 Twitter https://twitter.com/AdvMianSadi?s=08 Email: dailylawpoint@gmail.com All About Law and Lawyer | #Adv_Mian_Sadi_Abbas_Deoka #DailyLawPoint #Daily_Law_Point #dailylawpoint, SERVICES WE PROVIDES also Available online services- 👉Criminal Cases, Civil Cases, Family Cases, 👉Revenue Cases, Bank Cases, Rent Cases, 👉Drafting and Pleadings, I will write your Legal Documents, 👉E Stamp, Contract, Iqrarnama, Affidavit, Sale Deed, Registry, Gift, Agreement, 👉Divorce Papers, Divorce Deed, TalaqNama, Divorce Deed, Divorce Documentation, / for overseas Pakistani 👉Court Marriage, Online Nikah, 👉 Online Legal Services, 👉Legal Notices, 👉Divorce certificate, Death Certificate, Birth Certificate, 👉Dissolution of Marriage Cases / Khula Case, 👉Special and General power of Attorney, Cancellation of Document (Mukhtar Nama, Ibtal Nama). 👉Sale Deed Registration / Registry of Property, 👉Christian Divorce and Marriage Issues, 👉Preparation of Legal Documents, 👉 Unmarried Certificate. 👉Registration of marriage, Nikahnama 👉 Change date of birth in Nadra iD card, Nadra issues, 👉Late Death Certificate 👉 Consultancy on phone call 👉 File any kind of case 👉Property related disputes advice And Many More Regarding Law... Thanks for Watching........ Please Subscribe
    https://wn.com/Talaq_Moasar_Certificate_|_Divorce_Certificate_After_Divorce_Or_Khulah_|_Union_Council_|_Talaqnama
    How does the EU work (and why is it so complex)? | DW News
    5:09

    How does the EU work (and why is it so complex)? | DW News

    • Order:
    • Duration: 5:09
    • Uploaded Date: 17 May 2019
    • views: 371372
    The EU is complex. Even most Europeans struggle to understand which EU institution does what, who's in charge and how EU laws get passed. DW Reporter Anne-Sophie Brändlin breaks down everything you need to know about how the EU works and why it's so complicated. Because of course, there's a reason for that. Subscribe: https://www.youtube.com/user/deutschewelleenglish?sub_confirmation=1 #EUelections2019 For more news go to: http://www.dw.com/en/ Follow DW on social media: ►Facebook: https://www.facebook.com/deutschewellenews/ ►Twitter: https://twitter.com/dwnews ►Instagram: https://www.instagram.com/dw_stories/ Für Videos in deutscher Sprache besuchen Sie: https://www.youtube.com/channel/deutschewelle
    https://wn.com/How_Does_The_Eu_Work_(And_Why_Is_It_So_Complex)_|_Dw_News
    Union Minister Kiren Rijiju Reflects on PM Modi's Vision for Viksit Bharat
    0:49

    Union Minister Kiren Rijiju Reflects on PM Modi's Vision for Viksit Bharat

    • Order:
    • Duration: 0:49
    • Uploaded Date: 18 Nov 2024
    • views: 431
    Union Minister Shri Kiren Rijiju reflected on the past, sharing an instance when Prime Minister Modi urged ministers to focus more on work than on governance inclusivity for better results and progressive growth back in 2014. This served as an inspiration for the vision of Viksit Bharat by 2047. Check out some of our other popular videos: https://www.youtube.com/watch?v=g9BsMMkSC9A https://www.youtube.com/watch?v=Bo1AgQlOgiw&t=316s https://www.youtube.com/watch?v=GwbrSxd0WQ4 Spread the word #ViksitBharat #YuvaConnect #ModiGovernment #NewIndiaJunction Contribute to the conversation Drop a comment to let us know what you think! Be a part of the NIJ Community: Instagram: http://www.instagram.com/nijunction Facebook: http://www.facebook.com/nijunction Twitter: http://www.twitter.com/nijunction Spotify: https://open.spotify.com/show/2DPvQM22Zcf1v3REL08bdd
    https://wn.com/Union_Minister_Kiren_Rijiju_Reflects_On_Pm_Modi's_Vision_For_Viksit_Bharat
    Legal Procedure Of Late Entry Birth Certificate Rejistration In Union Council |
    2:41

    Legal Procedure Of Late Entry Birth Certificate Rejistration In Union Council |

    • Order:
    • Duration: 2:41
    • Uploaded Date: 16 Aug 2023
    • views: 3214
    #educationforum2898 #union council #Birth Certificate Rejistration
    https://wn.com/Legal_Procedure_Of_Late_Entry_Birth_Certificate_Rejistration_In_Union_Council_|
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    developed with YouTube
    PLAYLIST TIME:

    Understand the Union council | UC chairman's Functions | Departments of local Government in Pakistan

    #Departments_of_Local_Government #UnionCouncil #UC #Chairman #Functions
    5:42
    Understand the Union council | UC chairman's Functions | Departments of local Government in Pakistan
    #Departments_of_Local_Government #UnionCouncil #UC #Chairman #Functions
    published: 23 Dec 2021
    Play in Full Screen
    6:14
    How Divorce becomes Effective | Proceeding in Union council / municipal corporation | law
    #divorcecertificate #unioncouncilproceedings #divorcelaw For Business inquiries Contact m...
    published: 02 Dec 2020
    Play in Full Screen
    2:15
    Breaking News Nadra Service available from Union Council|Nadra service in Union Council
    Breaking News Nadra Service available from Union Council|Nadra service in Union Council A...
    published: 01 Jun 2024
    Play in Full Screen
    2:38
    How to get late Death Certificate from Nadra / Union council | Late death Registration
    #deathcertificate #latedeathcertificate #lateregistrationofdeath How to get late Death Cer...
    published: 21 Jun 2020
    Play in Full Screen
    0:17
    New fee schedule for birth and death certificates in union council.
    #unioncouncil#nadra#certificate
    published: 06 Apr 2023
    Play in Full Screen
    14:25
    Functions and Powers of Union Council (Chairman)
    Functions and Powers of Union Council (Chairman) | Zahid Farid #localgovernment #pakistan ...
    published: 28 Jul 2023
    Play in Full Screen
    3:07
    Talaq Moasar Certificate | Divorce Certificate after Divorce or Khulah | Union Council | TalaqNama
    Talaq Moasar Certificate | Divorce Certificate after Divorce or Khulah | Union Council |...
    published: 05 Dec 2022
    Play in Full Screen
    5:09
    How does the EU work (and why is it so complex)? | DW News
    The EU is complex. Even most Europeans struggle to understand which EU institution does wh...
    published: 17 May 2019
    Play in Full Screen
    0:49
    Union Minister Kiren Rijiju Reflects on PM Modi's Vision for Viksit Bharat
    Union Minister Shri Kiren Rijiju reflected on the past, sharing an instance when Prime Min...
    published: 18 Nov 2024
    Play in Full Screen
    2:41
    Legal Procedure Of Late Entry Birth Certificate Rejistration In Union Council |
    #educationforum2898 #union council #Birth Certificate Rejistration
    published: 16 Aug 2023
    Play in Full Screen

    Union councils of Pakistan

    A sherwan or union council in Pakistan is an elected local government body consisting of 21 councillors, and headed by a nazim now called Chairman (which is equivalent to a mayor) and a naib nazim now called Vice Chairman (deputy). Union councils are the fifth tier of government in Pakistan and are often known as Village Councils in one province called Khyber Pakhtunkhwa and represented by a village council usually comprises a large village and surrounding areas, often including nearby small villages. The term Union or Village Council may be used for localities that are part of cities.

    Headed by a union nazim, each union council has 13 elected members or councillors. In addition to four male and two female members elected directly, there are two male and two female representatives of the labour, a minority member, a union nazim and his deputy known as union naib nazim. Beside elected members, there are several government employees and functionaries in every union council, who report to the secretary of the union council. The latter is a civil servant appointed by the state.

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: union council

    Edit

    Egypt’s FM heads to Brussels to discuss enhancement of bilateral ties

    Egypt Today 19 Jan 2025
    Minister Abdelatty is scheduled to receive senior officials from various European Union institutions, including the president of the European Council and the high representative of the European Union for foreign affairs and security policy.
    Edit

    ₹1.5-cr penalty on society for STP fault: NGT issues notice to Haryana pollution board

    Hindustan Times 19 Jan 2025
    “However, despite that the HSPCB imposed the penalty for violation of 415 days, which is arbitrary and irrational and against the “Polluter Pay” principle laid down by the Supreme Court in its judgments - ‘Indian Council for Eviro V/s.
    Edit

    POLITICAL WEEK AHEAD: From Davos to Trump’s inauguration and SA’s home affairs, it’s all systems go

    Business Day 19 Jan 2025
    The public service bargaining council (PSCBC) is still waiting for feedback from unions representing the country’s more than 1.3-million public servants on government’s revised three-year wage offer.&nbsp;.
    Edit

    'Will I have a job?' Federal workers full of uncertainty, fear over Trump plans

    Usatoday 19 Jan 2025
    “They say we’re considered ‘essential,’” said Jones, 46, a longtime TSA agent at Love Field in Dallas and the secretary-treasurer for AGFE Council 100, the union representing 45,000 of his fellow TSA colleagues.
    Edit

    Agendas

    Brainerd Dispatch 19 Jan 2025
    ADJOURN Brainerd City Council ... Council Chambers ... NOTICE TO PUBLIC - all matters listed are considered routine by the Council and will all be enacted ... prior to the time the Council votes on the motion to be ADOPTED BY ROLL CALL ... Council Member Reports.
    Edit

    L.A. fires: Will Trump immigration crackdown slow rebuilding?

    The Los Angeles Times 19 Jan 2025
    of Home Builders ... 'There's definitely labor shortages around the corner,' said Frank Hawk, executive secretary-treasurer of the Western States Regional Council of Carpenters, which represents 90,000 union members in 12 Western states ... area,” he said ... .
    Edit

    MHA, Kuki-Zo body hold talks in Capital

    Hindustan Times 18 Jan 2025
    A delegation of the Kuki-Zo Council (KZC), an apex body of Kuki-Zo groups, met Union home ministry officials in New Delhi on Friday to discuss their demands for a separate administrative region, while ...
    Edit

    Monterey Bay Aquarium workers announce unionization campaign

    Santa Cruz Sentinel 18 Jan 2025
    MONTEREY – A group of approximately 30 Monterey Bay Aquarium employees Tuesday announced their campaign to unionize in order, they said, to build a workplace that reflects the aquarium’s core values.
    Edit

    QWP slams PTI govt for ‘poor’ governance

    The News International 18 Jan 2025
    Addressing a gathering of party workers in Union Council Ziam in Tangi tehsil, he alleged that bribes were received for government jobs, transfers, and postings.He noted that the people were bearing ...
    Edit

    MCVS announces first two schemes of 2025

    The Malta Independent 18 Jan 2025
    The Malta Council for the Voluntary Sector (MCVS) has announced the first two schemes for this year ... This includes funds from the European Union, EEA grants, Norway Grants, Bilateral Agreements and Council of Europe funds ... vofunding.org.mt. .
    Edit

    Labour’s plan to torch three decades of education reforms

    The Daily Telegraph 18 Jan 2025
    The move was ferociously opposed by the Labour-run Haringey Council, governors, some of the parents, the Anti Academies Alliance, the National Union of Teachers and local MP David Lammy, now the foreign secretary.
    Edit

    Talk TV and GB News have broken the back of left-wing media dominance

    Blitz 18 Jan 2025
    Whether on social media, county councils, Trade Unions or University campuses, the far left are exceptionally well organized more importantly, well – funded as we shall verify.
    Edit

    Poland seeks to lift ties with Việt Nam to highest possible level: Sejm speaker

    Vietnam News 18 Jan 2025
    He urged the Polish lower house to swiftly ratify the EU-Việt Nam&nbsp;Investment Protection Agreement (EVIPA) and Poland, in its capacity as the presidency of the Council of the European Union, to ...
    Edit

    How quickly do firefighters attend blazes in your area? Interactive map lays bare the 5-MINUTE ...

    The Daily Mail 18 Jan 2025
    The National Fire Chiefs Council (NFCC) blamed reduced funding, warning that it was 'concerned' by its impact on public safety. Union bosses say one in five firefighter jobs have been cut since 2010.

    Most Viewed

    ×