Browse Source

Fix syntax in views

pull/68/head
Nafies Luthfi 5 years ago
parent
commit
a1209fd036
  1. 2
      resources/views/subscriptions/index.blade.php

2
resources/views/subscriptions/index.blade.php

@ -11,7 +11,7 @@
{!! Form::open(['method' => 'get', 'class' => 'form-inline']) !!}
{!! Form::text('q', request('q'), ['class' => 'form-control index-search-field', 'placeholder' =>__('subscription.search'), 'style' => 'width:350px']) !!}
{!! Form::submit(__('subscription.search'), ['class' => 'btn btn-info btn-sm']) !!}
{!! link_to_route('subscriptions.index','Reset',[],['class' => 'btn btn-default btn-sm']) !!}
{!! link_to_route('subscriptions.index', __('app.reset'), [], ['class' => 'btn btn-default btn-sm']) !!}
{!! Form::close() !!}
</div>

Loading…
Cancel
Save