@extends('admin.layout.app') @section('title', 'Election Portal - Edit Post') @section('content')

Edit Post

Back
{!! Form::model($row, ['method' => 'patch', 'files' => true, 'route' => ['apost.update', $row->id]]) !!} @csrf
{{ $errors->first('title') }}
{{ $errors->first('post_image') }}
{{ $errors->first('post_description')}}
@endsection @push('footerscript') @endpush