@extends('admin.master.index') @section('content')
{!! Form::open() !!}
{!! Form::label('title', 'Title') !!} {!! Form::text('title', $image->title, ['class' => 'form-control input-lg', 'placeholder' => 'Title of Image']) !!}
{!! Form::label('description', 'Description') !!} {!! Form::textarea('description', $image->image_description, ['class' => 'form-control input-lg', 'placeholder' => 'Description']) !!}
{!! Form::label('category_id', t('Category')) !!}
{!! Form::label('tags', 'Tags') !!}
{!! Form::label('is_adult', 'Is Adult') !!}
{!! Form::label('featured_at', 'Is Featured Image') !!} {!! Form::checkbox('featured_at', 1, (bool)$image->featured_at) !!}
{!! Form::label('delete', 'Delete this image') !!} {!! Form::checkbox('delete', 1) !!}
{!! Form::submit('Update', ['class' => 'btn btn-success btn-lg']) !!} {!! Form::close() !!}
@endsection @section('extra-js') @endsection