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

{{ __('backend.edit_cms') }}

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