@extends('layouts.console') @section('title', ($job && $job->exists) ? '求人編集' : '求人新規作成') @section('console','店舗管理')@section('heading', ($job && $job->exists) ? '求人編集' : '求人新規作成') @section('who', $member->name.' 様')@section('logout', route('member.logout')) @section('nav')@include('member._nav')@endsection @section('content')

← 求人一覧へ

@php $selectedTags = old('tags', $job?->tags ?? []); @endphp
@csrf
@if($job && $job->exists)
{{ optional($job->shop)->name }}
@else @endif
@planfeature('job_featured_image')
外部URL or サーバ内パス。一覧と詳細でサムネ/ヒーロー画像として表示。
@else
スタンダード以上のプランで画像が掲載できます。プランを見る
@endplanfeature
@foreach($tags as $t) @endforeach

※ 保存後、管理者の承認を経て掲載されます。応募問合せは店舗の既存連絡先(メール・電話・LINE)に送られます。

@if($job && $job->exists)

ギャラリー(最大8枚)

@planfeature('job_gallery') @php $imgs = $job->images ?? collect(); @endphp @if($imgs->count())
@foreach($imgs as $im)
{{ $im->alt }}
並び:{{ $im->sort }}{{ $im->alt? '/'.$im->alt : '' }}
@csrf
@endforeach
@else
画像未登録
@endif @if($imgs->count() < 8)
@csrf
@else
上限8枚に達しています。古いものを削除してから追加してください。
@endif @else
複数写真ギャラリー(最大8枚)はプレミアムプランの機能です。プランを見る
@endplanfeature
@endif @endsection