@extends('layouts.master') @section('title',__('Create Custom Page')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Custom Page')}}
{!! Form::open(['method' => 'POST', 'action' => 'CustomPageController@store']) !!}
{!! Form::label('title', __('CustomPageTitle')) !!} {!! Form::text('title', null, ['class' => 'form-control', 'autofocus', 'autocomplete'=>'off','required', 'placeholder'=> __('Please Enter Your Custom Page Title')]) !!} {{ $errors->first('title') }}
{!! Form::label('detail', __('Description')) !!} -

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

{!! Form::textarea('detail', null, ['id' => '','autocomplete'=>'off', 'class' => 'form-control ckeditor', 'required']) !!} {{ $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