@extends('layouts.landing') @section('title', 'Create New Pages') @section('content')
@include('elements.settings-menu')
Create a new page
@csrf
All Pages
@if(count($pages) > 0)
    @foreach($pages as $page)
  • is_active == 1 ? 'checked' : ''}}>
    {{ csrf_field() }} {{ method_field('DELETE') }}
  • @endforeach
@else

You haven't created any page

@endif
@include('elements.edit-page') @endsection