2018-12-01 15:28:17 -05:00
|
|
|
<div>
|
2019-08-04 09:26:39 -04:00
|
|
|
<form action="{{ url("/settings/users/{$currentUser->id}/switch-${type}-view") }}" method="POST" class="inline">
|
2018-12-01 15:28:17 -05:00
|
|
|
{!! csrf_field() !!}
|
|
|
|
{!! method_field('PATCH') !!}
|
2018-12-07 13:33:32 -05:00
|
|
|
<input type="hidden" value="{{ $view === 'list'? 'grid' : 'list' }}" name="view_type">
|
|
|
|
@if ($view === 'list')
|
2019-02-16 10:05:18 -05:00
|
|
|
<button type="submit" class="icon-list-item text-primary">
|
2018-12-01 15:28:17 -05:00
|
|
|
<span class="icon">@icon('grid')</span>
|
|
|
|
<span>{{ trans('common.grid_view') }}</span>
|
2019-02-16 10:05:18 -05:00
|
|
|
</button>
|
2018-12-01 15:28:17 -05:00
|
|
|
@else
|
2019-02-16 10:05:18 -05:00
|
|
|
<button type="submit" class="icon-list-item text-primary">
|
|
|
|
<span>@icon('list')</span>
|
2018-12-01 15:28:17 -05:00
|
|
|
<span>{{ trans('common.list_view') }}</span>
|
2019-02-16 10:05:18 -05:00
|
|
|
</button>
|
2018-12-01 15:28:17 -05:00
|
|
|
@endif
|
|
|
|
</form>
|
|
|
|
</div>
|