@extends('layouts/layoutMaster') @section('title', isset($page) ? 'Edit Page' : 'Create New Page') @section('content')
@csrf

{{ isset($page) ? 'Edit Page' : 'Create New Page' }}

Page Information
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (isset($page)) @method('PUT') @endif
@if(isset($page)) @else @endif
@endsection