@extends('dashboard.layouts.master') @section('title', __('Edit CMS')) @push('after-styles') @endpush @section('content')

Edit {{ __('backend.cms') }}

{{ __('backend.dashboard') }} / {{ __('backend.cms') }} / Edit CMS
{{ Form::open(['route' => ['cms.update', 'id' => $cms->id], 'method' => 'POST', 'files' => true]) }}
@if ($errors->has('page_name')) {{ $errors->first('page_name') }} @endif
@if ($errors->has('page_name_ar')) {{ $errors->first('page_name_ar') }} @endif
@if ($errors->has('page_content')) {{ $errors->first('page_content') }} @endif
@if ($errors->has('page_content_ar')) {{ $errors->first('page_content_ar') }} @endif
{{ Form::close() }}
@endsection @push('after-scripts') @endpush