@extends('layouts.master') @section('title',__('Edit Post')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Edit Post')}}
{!! Form::model($blog, ['method' => 'PATCH', 'action' => ['BlogController@update', $blog->id], 'files' => true]) !!}
{!! Form::label('title', __('Blog Title')) !!} {!! Form::text('title', old('name'), ['class' => 'form-control','autocomplete'=>'off','required']) !!} {{ $errors->first('title') }}
{!! Form::label('image', __('Image')) !!} {!! Form::file('image', ['class' => 'input-file', 'id'=>'image']) !!}

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

{{ $errors->first('image') }}
{!! Form::label('poster', __('Poster')) !!} {!! Form::file('poster', ['class' => 'input-file', 'id'=>'poster']) !!}

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

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

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