@extends('layouts.backend.app') @push('css') @endpush @section('content')

{{ __('Edit Page') }}

@if ($errors->any())
{{ __('Whoops!') }} {{ __('There were some problems with your input.') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php $info = json_decode($page_edit->page->value); @endphp
@csrf @method('put')
@endsection @push('js') @endpush