@extends('admin.layout.master') @section('import-css') @stop @section('body')

{{$page_title}} Back

{{ csrf_field() }}
Title
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif

Image
@if($post->image == null) ... @else ... @endif
Select image Change Remove
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif
Details
@if ($errors->has('details'))
{{ $errors->first('details') }}
@endif


@endsection @section('import-script') @stop @section('script') @stop