Skip to content

Commit

Permalink
Change Save buttons to Checkout and add Cancel (#4202)
Browse files Browse the repository at this point in the history
Bringing components and consumables checkout page inline with other
checkout pages
  • Loading branch information
madd15 authored and snipe committed Oct 11, 2017
1 parent 13a7163 commit 4ee7765
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions resources/views/components/checkout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,10 @@
</div>

</div> <!-- .BOX-BODY-->
<div class="box-footer text-right">
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white"></i> {{ trans('general.save') }}</button>
</div>
<div class="box-footer">
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
<button type="submit" class="btn btn-success pull-right"><i class="fa fa-check icon-white"></i> {{ trans('general.checkout') }}</button>
</div>
</div> <!-- .box-default-->
</form>
</div> <!-- .col-md-9-->
Expand Down
7 changes: 4 additions & 3 deletions resources/views/consumables/checkout.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,10 @@
</div>
@endif
</div> <!-- .box-body -->
<div class="box-footer text-right">
<button type="submit" class="btn btn-success"><i class="fa fa-check icon-white"></i> {{ trans('general.save') }}</button>
</div>
<div class="box-footer">
<a class="btn btn-link" href="{{ URL::previous() }}">{{ trans('button.cancel') }}</a>
<button type="submit" class="btn btn-success pull-right"><i class="fa fa-check icon-white"></i> {{ trans('general.checkout') }}</button>
</div>
</div>
</form>

Expand Down

0 comments on commit 4ee7765

Please sign in to comment.