Skip to content

Commit f9934c4

Browse files
author
binbytes-4
committed
-some change select form control
1 parent 4571954 commit f9934c4

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

resources/views/accounts/inc/_form.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{{ html()->select('user_id')
88
->options($usersforname)
99
->placeholder('User Id')
10-
->class(['form-control', 'is-invalid' => $errors->has('user_id')])
10+
->class(['form-control custom-select', 'is-invalid' => $errors->has('user_id')])
1111
}}
1212

1313
@if ($errors->has('user_id'))

resources/views/layouts/app.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
<script type="text/javascript">
4545
$(function() {
4646
$('.datepicker').datepicker();
47+
$('.custom-select').selectize({});
4748
});
4849
</script>
4950
@stack('scripts')

resources/views/projects/inc/_form.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
{{ html()->select('client_id')
2525
->options($clientsforname)
2626
->placeholder('Client Id')
27-
->class(['form-control', 'is-invalid' => $errors->has('client_id')])
27+
->class(['form-control custom-select', 'is-invalid' => $errors->has('client_id')])
2828
}}
2929

3030
@if ($errors->has('client_id'))

0 commit comments

Comments
 (0)