@extends('Backend.dashboard') @section('title') Pages @endsection @section('content') @if(Session::has('success'))
@endif @if(Session::has('danger'))
@endif @if(count($errors) > 0)
@foreach($errors->all() as $error) @endforeach
@endif
Add New Page
@foreach($pages as $page) @endforeach
Page Title Actions
{{ $page->title }} Edit Page Delete Page
@endsection