@extends('backend.layouts.master') @section('title') Edit Page @endsection @section('content')
@include('backend/includes/sidebar')
@include('backend/includes/header')

Edit Page

@if(session()->has('success'))
{{ session()->get('success') }}.   Click here to view the page.
@endif @if(count($errors) > 0)
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Edit Page Form
Only Lower case characters and - is allowed
@foreach($templates as $template)
id == $pages->template_id) checked @endif>
@endforeach


Cancel
@include('backend/includes/footer')
@endsection