Skip to content

Commit

Permalink
Merge pull request #1358 from innocente205/patch-2
Browse files Browse the repository at this point in the history
(Update) add_request.blade.php
  • Loading branch information
HDVinnie authored May 27, 2020
2 parents 3d90188 + a77cbae commit 7a8ef48
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions resources/views/requests/add_request.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@
<div class="form-group">
<label for="category_id">@lang('request.category')</label>
<label>
<select name="category_id" class="form-control">
<select name="category_id" class="form-control" required>
<option hidden="" disabled="disabled" selected="selected" value="">Select one</option>
@foreach ($categories as $category)
<option value="{{ $category->id }}">{{ $category->name }}</option>
@endforeach
Expand All @@ -102,7 +103,8 @@
<div class="form-group">
<label for="type">@lang('request.type')</label>
<label>
<select name="type" class="form-control">
<select name="type" class="form-control" required>
<option hidden="" disabled="disabled" selected="selected" value="">Select one</option>
@foreach ($types as $type)
<option value="{{ $type->name }}">{{ $type->name }}</option>
@endforeach
Expand Down

0 comments on commit 7a8ef48

Please sign in to comment.