@extends('layouts.app', ['title' => __('Pages')]) @section('content')

{{ __('Pages') }}

@include('partials.flash')
@if(count($pages))
@foreach ($pages as $page) @endforeach
{{ __('Title') }} {{ __('Content') }} {{ __('Show as link') }}
{{ $page->title }} {{ __('Click for details') }}
@endif
@include('layouts.footers.auth')
@endsection