Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
horcsinbalint committed Mar 7, 2024
1 parent 7db0b97 commit ee5b070
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
18 changes: 9 additions & 9 deletions resources/views/network/routers/create.blade.php
Expand Up @@ -17,22 +17,22 @@
<div class="card-content">
<span class="card-title">@lang('router.new')</span>
<div class="row">
<x-input.textarea s="6" type="text" text="router.ip" id="ip" maxlength="15" required/>
<x-input.textarea s="6" type="text" text="router.room" id="room" min="1" max="500" required/>
<x-input.textarea s="6" text="router.ip" id="ip" maxlength="15" required/>
<x-input.textarea s="6" text="router.room" id="room" maxlength="5" required/>
</div>
<div class="row">
<x-input.textarea s="4" type="text" text="router.port" id="port"/>
<x-input.textarea s="4" type="text" text="router.type" id="type"/>
<x-input.textarea s="4" type="text" text="router.serial_number" id="serial_number"/>
<x-input.textarea s="4" text="router.port" id="port"/>
<x-input.textarea s="4" text="router.type" id="type"/>
<x-input.textarea s="4" text="router.serial_number" id="serial_number"/>
</div>
<div><p>@lang('internet.mac_address')</p></div>
<div class="row">
<x-input.textarea s="4" type="text" text="WAN" id="mac_WAN"/>
<x-input.textarea s="4" type="text" text="2G/LAN" id="mac_2G_LAN"/>
<x-input.textarea s="4" type="text" text="5G" id="mac_5G"/>
<x-input.textarea s="4" text="WAN" id="mac_WAN"/>
<x-input.textarea s="4" text="2G/LAN" id="mac_2G_LAN"/>
<x-input.textarea s="4" text="5G" id="mac_5G"/>
</div>
<div class="row">
<x-input.textarea type="text" id="comment" text="general.comment" maxlength="255"/>
<x-input.textarea id="comment" text="general.comment" maxlength="255"/>
</div>
<div class="row">
<x-input.text s="6" type="date" id="date_of_acquisition" text="router.date_of_acquisition"/>
Expand Down
18 changes: 9 additions & 9 deletions resources/views/network/routers/edit.blade.php
Expand Up @@ -17,22 +17,22 @@
<div class="card-content">
<span class="card-title">@lang('router.edit')</span>
<div class="row">
<x-input.textarea s="6" type="text" text="router.ip" id="ip" maxlength="15" required>{{ $router->ip }}</x-input.textarea>
<x-input.textarea s="6" type="text" text="router.room" id="room" min="1" max="500" required>{{ $router->room }}</x-input.textarea>
<x-input.textarea s="6" text="router.ip" id="ip" maxlength="15" required>{{ $router->ip }}</x-input.textarea>
<x-input.textarea s="6" text="router.room" id="room" maxlength="5" required>{{ $router->room }}</x-input.textarea>
</div>
<div class="row">
<x-input.textarea s="4" type="text" text="router.port" id="port">{{ $router->port }}</x-input.textarea>
<x-input.textarea s="4" type="text" text="router.type" id="type">{{ $router->type }}</x-input.textarea>
<x-input.textarea s="4" type="text" text="router.serial_number" id="serial_number">{{ $router->serial_number }}</x-input.textarea>
<x-input.textarea s="4" text="router.port" id="port">{{ $router->port }}</x-input.textarea>
<x-input.textarea s="4" text="router.type" id="type">{{ $router->type }}</x-input.textarea>
<x-input.textarea s="4" text="router.serial_number" id="serial_number">{{ $router->serial_number }}</x-input.textarea>
</div>
<div><p>@lang('internet.mac_address')</p></div>
<div class="row">
<x-input.textarea s="4" type="text" text="WAN" id="mac_WAN">{{ $router->mac_WAN }}</x-input.textarea>
<x-input.textarea s="4" type="text" text="2G/LAN" id="mac_2G_LAN">{{ $router->mac_2G_LAN }}</x-input.textarea>
<x-input.textarea s="4" type="text" text="5G" id="mac_5G">{{ $router->mac_5G }}</x-input.textarea>
<x-input.textarea s="4" text="WAN" id="mac_WAN">{{ $router->mac_WAN }}</x-input.textarea>
<x-input.textarea s="4" text="2G/LAN" id="mac_2G_LAN">{{ $router->mac_2G_LAN }}</x-input.textarea>
<x-input.textarea s="4" text="5G" id="mac_5G">{{ $router->mac_5G }}</x-input.textarea>
</div>
<div class="row">
<x-input.textarea type="text" id="comment" text="general.comment" maxlength="255">{{ $router->comment }}</x-input.textarea>
<x-input.textarea id="comment" text="general.comment" maxlength="255">{{ $router->comment }}</x-input.textarea>
</div>
<div class="row">
<x-input.text s="6" type="date" id="date_of_acquisition" text="router.date_of_acquisition" value="{{ $router->date_of_acquisition }}"/>
Expand Down
3 changes: 1 addition & 2 deletions resources/views/user/study-line-selector.blade.php
Expand Up @@ -13,8 +13,7 @@
<x-input.textarea id="study_lines[{{ $index }}][minor]"
xl=4 s=6
text="user.study_line_minor"
:value="$value?->minor"
helper="Nem kötelező"
helper="Nem kötelező"
>{{ $value?->minor }}</x-input.textarea>
<x-input.select id="study_lines[{{ $index }}][start]"
xl=6 s=6
Expand Down

0 comments on commit ee5b070

Please sign in to comment.