mirror of
https://github.com/HDInnovations/UNIT3D.git
synced 2026-01-31 01:35:31 +01:00
74 lines
2.4 KiB
PHP
74 lines
2.4 KiB
PHP
@extends('layout.default')
|
|
|
|
@section('breadcrumbs')
|
|
<li class="breadcrumbV2">
|
|
<a href="{{ route('staff.dashboard.index') }}" class="breadcrumb__link">
|
|
{{ __('staff.staff-dashboard') }}
|
|
</a>
|
|
</li>
|
|
<li class="breadcrumbV2">
|
|
<a href="{{ route('staff.resolutions.index') }}" class="breadcrumb__link">
|
|
{{ __('staff.torrent-resolutions') }}
|
|
</a>
|
|
</li>
|
|
<li class="breadcrumbV2">
|
|
{{ $resolution->name }}
|
|
</li>
|
|
<li class="breadcrumb--active">
|
|
{{ __('common.edit') }}
|
|
</li>
|
|
@endsection
|
|
|
|
@section('page', 'page__resolution--edit')
|
|
|
|
@section('main')
|
|
<section class="panelV2">
|
|
<h2 class="panel__heading">
|
|
{{ __('common.edit') }} Torrent Resolution: {{ $resolution->name }}
|
|
</h2>
|
|
<div class="panel__body">
|
|
<form
|
|
class="form"
|
|
method="POST"
|
|
action="{{ route('staff.resolutions.update', ['resolution' => $resolution]) }}"
|
|
>
|
|
@method('PATCH')
|
|
@csrf
|
|
<p class="form__group">
|
|
<input
|
|
id="name"
|
|
class="form__text"
|
|
name="name"
|
|
required
|
|
type="text"
|
|
value="{{ $resolution->name }}"
|
|
/>
|
|
<label class="form__label form__label--floating" for="name">
|
|
{{ __('common.name') }}
|
|
</label>
|
|
</p>
|
|
<p class="form__group">
|
|
<input
|
|
id="position"
|
|
class="form__text"
|
|
inputmode="numeric"
|
|
name="position"
|
|
pattern="[0-9]*"
|
|
required
|
|
type="text"
|
|
value="{{ $resolution->position }}"
|
|
/>
|
|
<label class="form__label form__label--floating" for="position">
|
|
{{ __('common.position') }}
|
|
</label>
|
|
</p>
|
|
<p class="form__group">
|
|
<button class="form__button form__button--filled">
|
|
{{ __('common.submit') }}
|
|
</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
@endsection
|