@extends("admin.admin_app") @section("content")
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif
@foreach($pages_list as $i => $page) @endforeach
{{trans('words.page_title')}} {{trans('words.status')}} {{trans('words.action')}}
{{ stripslashes($page->page_title) }} @if($page->status==1){{trans('words.active')}} @else{{trans('words.inactive')}}@endif @if($page->id!=5) @endif
@include("admin.copyright")
@endsection