Blame view

resources/views/settings/taxes/edit.blade.php 1.08 KB
b7c7a5f6   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  @extends('layouts.admin')
  
  @section('title', trans('general.title.edit', ['type' => trans_choice('general.tax_rates', 1)]))
  
  @section('content')
      <!-- Default box -->
      <div class="box box-success">
          {!! Form::model($tax, [
              'method' => 'PATCH',
              'url' => ['settings/taxes', $tax->id],
              'role' => 'form'
          ]) !!}
  
          <div class="box-body">
              {{ Form::textGroup('name', trans('general.name'), 'id-card-o') }}
  
              {{ Form::textGroup('rate', trans('taxes.rate'), 'percent') }}
  
              {{ Form::radioGroup('enabled', trans('general.enabled')) }}
          </div>
          <!-- /.box-body -->
  
          @permission('update-settings-taxes')
          <div class="box-footer">
              {{ Form::saveButtons('settings/taxes') }}
          </div>
          <!-- /.box-footer -->
          @endpermission
  
          {!! Form::close() !!}
      </div>
  @endsection
  
  @push('scripts')
      <script type="text/javascript">
          var text_yes = '{{ trans('general.yes') }}';
          var text_no = '{{ trans('general.no') }}';
      </script>
  @endpush