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

{{ __('Add New Page') }}

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

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@endsection @push('js') @endpush