Skip to content

Commit

Permalink
Remove User Field in create.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
BossOfGames committed Apr 21, 2024
1 parent a299913 commit 0687521
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions Resources/views/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,6 @@
<div class="card">
<div class="card-header">Additional Settings</div>
<div class="card-body">
@ability('admin', 'admin-access')
<div>Assign To User</div>
<select class="form-control select2 my-auto" name="user_id">
@foreach(\App\Models\User::all() as $user)
<option value="{{$user->id}}" @if($user->id == Auth::user()->id) selected @endif>{{$user->ident}} | {{$user->name}}</option>
@endforeach
</select>
@endability
<div class="input-group input-group-sm mt-3">
{{ Form::text('flight_number', null, [
'placeholder' => "Flight Number (optional)",
Expand Down

0 comments on commit 0687521

Please sign in to comment.