forked from aslan/applicant-site
60 lines
2.3 KiB
PHP
60 lines
2.3 KiB
PHP
@extends('layouts.admin-layout')
|
|
@section('content')
|
|
|
|
@auth()
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1 class=""> Создать пункт Экрана приема</h1>
|
|
{{ Form::open(['url' => route('admin-reception-screen.store'), 'method' => 'POST', 'class' => '']) }}
|
|
<div class="col">
|
|
<div>
|
|
{{ Form::label('position', 'Позиция') }}
|
|
</div>
|
|
<div class="mt-2">
|
|
{{ Form::text('position', '', ['class' => 'form-control']) }}
|
|
</div>
|
|
<div>
|
|
@if ($errors->any())
|
|
{{ $errors->first('position') }}
|
|
@endif
|
|
</div>
|
|
|
|
<div>
|
|
{{ Form::label('name', 'Название') }}
|
|
</div>
|
|
<div class="mt-2">
|
|
{{ Form::text('name', '', ['class' => 'form-control']) }}
|
|
</div>
|
|
<div>
|
|
@if ($errors->any())
|
|
{{ $errors->first('name') }}
|
|
@endif
|
|
</div>
|
|
|
|
<div class="mt-4">
|
|
{{ Form::submit('создать', ['class' => 'btn btn-primary']) }}
|
|
</div>
|
|
</div>
|
|
{{ Form::close() }}
|
|
</div>
|
|
<div class="col">
|
|
<table class="table">
|
|
<thead class="border-b-2 border-solid border-black text-left" style="text-align: left">
|
|
<tr>
|
|
<th scope="col">Позиция</th>
|
|
<th scope="col">Название</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($onlineDocuments as $onlineDocument)
|
|
<tr>
|
|
<th scope="row">{{ $onlineDocument->position }}</th>
|
|
<td>{{ $onlineDocument->name }}</td>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@endauth
|
|
@endsection
|