@extends('layouts.master') @section('title',__('Edit Custom Page')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Custom Page')}}
{!! Form::model($custom, ['method' => 'PATCH', 'action' => ['CustomPageController@update', $custom->id], 'files' => true]) !!}
{!! Form::label('title', __('CustomPageTitle')) !!} -

{{__('Enter Custom Page Title')}}

{!! Form::text('title', null, ['class' => 'form-control','autocomplete'=>'off','required']) !!} {{ $errors->first('title') }}
{!! Form::label('detail', __('Description')) !!} -

{{__('Please Enter Custom Page Description')}}

{!! Form::textarea('detail', null, ['id' => 'detail','autocomplete'=>'off', 'class' => 'form-control ckeditor', '']) !!} {{ $errors->first('detail') }}
{!! Form::label('in_show_menu', __('Show In Menu')) !!}
{{ $errors->first('in_show_menu') }}
{!! Form::label('is_active', __('Status')) !!}
{{ $errors->first('is_active') }}
{!! Form::close() !!}
@endsection @section('script') @endsection