@extends('layouts.master') @section('title',__('Create Post')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Post')}}
{!! Form::open(['method' => 'POST', 'action' => 'BlogController@store', 'files' => true]) !!}
{!! Form::label('title', __('Blog Title')) !!} {!! Form::text('title', old('title'), ['class' => 'form-control', 'autofocus', 'autocomplete'=>'off','required', 'placeholder'=> __('Enter Blog Title')]) !!} {{ $errors->first('title') }}
{!! Form::label('image', __('Image')) !!}* -

{{__('Help Block Text')}}

{!! Form::file('image', ['class' => 'input-file','required', 'id'=>'image']) !!}

{{__('Choose Custom Image')}}

{{ $errors->first('image') }}
{!! Form::label('poster', __('Poster')) !!} * -

{{__('Help Block Text')}}

{!! Form::file('poster', ['class' => 'input-file','required', 'id'=>'poster']) !!}

{{__('Choose Custom Image')}}

{{ $errors->first('poster') }}
{!! Form::label('detail', __('Description')) !!} -

{{__('Please Enter Blog Description')}}

{!! Form::textarea('detail', old('detail'), ['id' => '','autocomplete'=>'off', 'class' => 'form-control ckeditor', 'required']) !!} {{ $errors->first('detail') }}

{!! Form::label('is_active', __('Status')) !!}
{{ $errors->first('is_active') }}
{!! Form::close() !!}
@endsection @section('script') {{-- --}} @endsection