mirror of
https://github.com/HDInnovations/UNIT3D.git
synced 2026-01-31 01:35:31 +01:00
56 lines
1.9 KiB
PHP
56 lines
1.9 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="breadcrumb--active">
|
|
{{ __('common.new-adj') }}
|
|
</li>
|
|
@endsection
|
|
|
|
@section('page', 'page__resolution--create')
|
|
|
|
@section('main')
|
|
<section class="panelV2">
|
|
<h2 class="panel__heading">Add A Torrent Resolution</h2>
|
|
<div class="panel__body">
|
|
<form class="form" method="POST" action="{{ route('staff.resolutions.store') }}">
|
|
@csrf
|
|
<p class="form__group">
|
|
<input id="name" class="form__text" name="name" required type="text" />
|
|
<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]*"
|
|
type="text"
|
|
required
|
|
/>
|
|
<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.add') }}
|
|
</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</section>
|
|
@endsection
|