@extends('layouts.admin') @section('content')

SEO

@if ($button) {!! Form::model($button, ['method' => 'PATCH', 'action' => ['ButtonController@update', $button->id], 'files' => true]) !!}
Go to Top
{!! Form::checkbox('goto', 1, ($button->goto == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"1", "data-off-text"=>"0", "data-size"=>"small"]) !!}
{{ $errors->first('goto') }}
Color Schemes
{!! Form::checkbox('color', 1, ($button->color == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"Light", "data-off-text"=>"Dark", "data-size"=>"small"]) !!}
{{ $errors->first('inspect') }}
Inspect
{!! Form::checkbox('inspect', 1, ($button->inspect == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"1", "data-off-text"=>"0", "data-size"=>"small"]) !!}
{{ $errors->first('inspect') }}
Rightclick Disable
{!! Form::checkbox('rightclick', 1, ($button->rightclick == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"On", "data-off-text"=>"OFF", "data-size"=>"small"]) !!}
{{ $errors->first('rightclick') }}
{!! Form::close() !!} @endif
@endsection @section('custom-script') @endsection