|
45 | 45 |
|
46 | 46 | <!-- Model No. --> |
47 | 47 | <div class="form-group {{ $errors->has('modelno') ? ' has-error' : '' }}"> |
48 | | - <label for="modelno" class="col-md-2 control-label">@lang('admin/models/table.modelnumber')</label> |
| 48 | + <label for="modelno" class="col-md-2 control-label">@lang('general.model_no')</label> |
49 | 49 | <div class="col-md-7"> |
50 | 50 | <input class="form-control" type="text" name="modelno" id="modelno" value="{{ Input::old('modelno', $model->modelno) }}" /> |
51 | 51 | {{ $errors->first('modelno', '<span class="alert-msg"><i class="icon-remove-sign"></i> :message</span>') }} |
52 | 52 | </div> |
53 | 53 | </div> |
54 | 54 |
|
55 | 55 | <div class="form-group {{ $errors->has('manufacturer_id') ? ' has-error' : '' }}"> |
56 | | - <label for="manufacturer_id" class="col-md-2 control-label">@lang('admin/models/table.manufacturer')</label> |
| 56 | + <label for="manufacturer_id" class="col-md-2 control-label">@lang('general.manufacturer')</label> |
57 | 57 | <div class="col-md-7"> |
58 | 58 | {{ Form::select('manufacturer_id', $manufacturer_list , Input::old('manufacturer_id', $model->manufacturer_id), array('class'=>'select2', 'style'=>'width:350px')) }} |
59 | 59 | {{ $errors->first('manufacturer_id', '<span class="alert-msg"><i class="icon-remove-sign"></i> :message</span>') }} |
|
62 | 62 |
|
63 | 63 | <!-- Depreciation --> |
64 | 64 | <div class="form-group {{ $errors->has('depreciation_id') ? ' has-error' : '' }}"> |
65 | | - <label for="depreciation_id" class="col-md-2 control-label">@lang('admin/models/general.depreciation')</label> |
| 65 | + <label for="depreciation_id" class="col-md-2 control-label">@lang('general.depreciation')</label> |
66 | 66 | <div class="col-md-7"> |
67 | 67 | {{ Form::select('depreciation_id', $depreciation_list , Input::old('depreciation_id', $model->depreciation_id), array('class'=>'select2', 'style'=>'width:350px')) }} |
68 | 68 | {{ $errors->first('depreciation_id', '<span class="alert-msg"><i class="icon-remove-sign"></i> :message</span>') }} |
|
71 | 71 |
|
72 | 72 | <!-- Category --> |
73 | 73 | <div class="form-group {{ $errors->has('category_id') ? ' has-error' : '' }}"> |
74 | | - <label for="category_id" class="col-md-2 control-label">@lang('admin/models/table.category')</label> |
| 74 | + <label for="category_id" class="col-md-2 control-label">@lang('general.category')</label> |
75 | 75 | <div class="col-md-7"> |
76 | 76 | {{ Form::select('category_id', $category_list , Input::old('category_id', $model->category_id), array('class'=>'select2', 'style'=>'width:350px')) }} |
77 | 77 | {{ $errors->first('category_id', '<span class="alert-msg"><i class="icon-remove-sign"></i> :message</span>') }} |
|
97 | 97 | <div class="form-group"> |
98 | 98 | <label class="col-md-2 control-label"></label> |
99 | 99 | <div class="col-md-7"> |
100 | | - <a class="btn btn-link" href="{{ URL::previous() }}">Cancel</a> |
| 100 | + <a class="btn btn-link" href="{{ URL::previous() }}">@lang('general.cancel')</a> |
101 | 101 | <button type="submit" class="btn btn-success"><i class="icon-ok icon-white"></i> @lang('general.save')</button> |
102 | 102 | </div> |
103 | 103 | </div> |
|
0 commit comments