@extends('admin.layout') @section('content')

{{ __('Dynamic Page') }}

{{ __('Dynamic Page') }}

@csrf
@if ($errors->has('language_id'))

{{ $errors->first('language_id') }}

@endif
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('body'))

{{ $errors->first('body') }}

@endif
@if ($errors->has('meta_keywords'))

{{ $errors->first('meta_keywords') }}

@endif
@if ($errors->has('meta_description'))

{{ $errors->first('meta_description') }}

@endif
@if ($errors->has('serial_number'))

{{ $errors->first('serial_number') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection