Skip to content

Instantly share code, notes, and snippets.

@evercode1
Created November 9, 2015 03:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evercode1/e02f592aa518818de5a5 to your computer and use it in GitHub Desktop.
Save evercode1/e02f592aa518818de5a5 to your computer and use it in GitHub Desktop.
edit marketing image view
@extends('layouts.master')
@section('content')
{!! Breadcrumb::withLinks(['Home' => '/',
'marketing images' => '/marketingimage',
"edit $marketingImage->image_name.$marketingImage->image_extension"
]) !!}
<h1>Edit {{ $marketingImage->image_name. '.' . $marketingImage->image_extension }}</h1>
<hr/>
@include('errors.errors')
<div>
Note: name and path values cannot be changed. If you wish to change these, then delete and create a new photo:
</div>
<br>
{!! Form::model($marketingImage, ['route' => ['marketingimage.update', $marketingImage->id],
'method' => 'PATCH',
'class' => 'form',
'files' => true]
) !!}
<!-- image name Form Input -->
<div>
<ul>
<li><h4>Image Name: {{ $marketingImage->image_name. '.' . $marketingImage->image_extension }} </h4></li>
<li><h4>Image Path: {{ $marketingImage->image_path }} </h4> </li>
<li><h4>Mobile Name: {{ $marketingImage->mobile_image_name. '.' . $marketingImage->mobile_extension }} </h4> </li>
<li><h4>Mobile Path: {{ $marketingImage->mobile_image_path }} </h4></li>
</ul>
</div>
<!-- is_something Form Input -->
<div class="form-group">
{!! Form::label('is_active', 'Is Active:') !!}
{!! Form::checkbox('is_active') !!}
</div>
<!-- is_featured Form Input -->
<div class="form-group">
{!! Form::label('is_featured', 'Is Featured:') !!}
{!! Form::checkbox('is_featured') !!}
</div>
<!-- form field for file -->
<div class="form-group">
{!! Form::label('image', 'Primary Image') !!}
{!! Form::file('image', null, array('class'=>'form-control')) !!}
</div>
<!-- form field for file -->
<div class="form-group">
{!! Form::label('mobile_image', 'Mobile Image') !!}
{!! Form::file('mobile_image', null, array('class'=>'form-control')) !!}
</div>
<div class="form-group">
{!! Form::submit('Edit', array('class'=>'btn btn-primary')) !!}
</div>
{!! Form::close() !!}
<div>
{!! Form::model($marketingImage, ['route' => ['marketingimage.destroy', $marketingImage->id],
'method' => 'DELETE',
'class' => 'form',
'files' => true]
) !!}
<div class="form-group">
{!! Form::submit('Delete Photos', array('class'=>'btn btn-danger', 'Onclick' => 'return ConfirmDelete();')) !!}
</div>
{!! Form::close() !!}
</div>
@endsection
@section('scripts')
<script>
function ConfirmDelete()
{
var x = confirm("Are you sure you want to delete?");
if (x)
return true;
else
return false;
}
</script>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment