@extends('admin.master.index') @section('content')
{!! Form::open() !!}
{!! Form::label('title', 'Title') !!} {!! Form::text('title', $post->title, ['class' => 'form-control input-lg', 'placeholder' => 'Title of Image']) !!}
{!! Form::label('description', 'Description') !!} {!! Form::textarea('description', $post->description, ['class' => 'form-control input-lg editor', 'placeholder' => 'Description']) !!}
{!! Form::label('apply_to', 'Apply To') !!} {!! Form::textarea('apply_to', $post->apply_to, ['class' => 'form-control input-lg editor', 'placeholder' => 'Apply To']) !!}
{!! Form::label('category', t('Category')) !!}
{!! Form::label('category', 'Type') !!}
{!! Form::label('tags', 'Tags') !!}
{!! Form::label('delete', 'Delete this') !!} {!! Form::checkbox('delete', 1) !!}
{!! Form::submit('Update', ['class' => 'btn btn-success btn-lg']) !!} {!! Form::close() !!}
@endsection @section('extra-js') @endsection