2024-02-19 18:55:44 +03:00
|
|
|
@extends('layouts.admin_layout')
|
|
|
|
@section('content')
|
|
|
|
@auth()
|
|
|
|
<div class="row">
|
|
|
|
<div class="col">
|
|
|
|
<h1 class="">Изменить место</h1>
|
|
|
|
{{ Form::open(['url' => route('places.update', $place), 'method' => 'PATCH', 'class' => '']) }}
|
|
|
|
<div class="col">
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::label('position', 'Позиция') }}
|
|
|
|
</div>
|
|
|
|
<div class="mt-1">
|
|
|
|
{{ Form::text('position', $place->position, ['class' => 'form-control']) }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if ($errors->any())
|
|
|
|
{{ $errors->first('position') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::label('description', 'Описание') }}
|
|
|
|
</div>
|
|
|
|
<div class="mt-1">
|
|
|
|
{{ Form::text('description', $place->description, ['class' => 'form-control']) }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if ($errors->any())
|
|
|
|
{{ $errors->first('description') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::label('amount', 'Количество мест') }}
|
|
|
|
</div>
|
|
|
|
<div class="mt-1">
|
|
|
|
{{ Form::text('amount', $place->amount, ['class' => 'form-control']) }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if ($errors->any())
|
|
|
|
{{ $errors->first('amount') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::label('direction_id', 'Направление подготовки') }}
|
|
|
|
</div>
|
|
|
|
<div class="mt-1">
|
|
|
|
{{ Form::select('direction_id', $directions, $place->direction->id, ['class' => 'form-select']) }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if ($errors->any())
|
|
|
|
{{ $errors->first('direction_id') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::label('place_type_id', 'Тип места') }}
|
|
|
|
</div>
|
|
|
|
<div class="mt-1">
|
|
|
|
{{ Form::select('place_type_id', $placeTypes, $place->placeType->id, ['class' => 'form-select']) }}
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if ($errors->any())
|
|
|
|
{{ $errors->first('place_type_id') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::label('education_form_id', 'Форма обучения') }}
|
|
|
|
</div>
|
|
|
|
<div class="mt-1">
|
2024-02-26 09:37:27 +03:00
|
|
|
{{ Form::select('education_form_id', $educationForms, $place->educationForm->id, ['class' => 'form-select']) }}
|
2024-02-19 18:55:44 +03:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
@if ($errors->any())
|
|
|
|
{{ $errors->first('education_form_id') }}
|
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="mt-3">
|
|
|
|
{{ Form::submit('Изменить', ['class' => 'btn btn-primary']) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ Form::close() }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endauth
|
|
|
|
@endsection
|