@extends('layouts.app') @section('title', __('titles.windows.add_user_affiliation')) @section('content') {{ __('links.back_to_profile') }} {{ __('titles.pages.add_user_affiliation') }} @csrf {{ __('labels.organization_name') }} {{ Str::ucfirst(__('entities.position')) }} @error('position_id') @include('includes.shared.context_error', ['message' => $errors->first('position_id')]) @enderror @foreach($positions as $pos) {{ Str::ucfirst($pos->name) }} @endforeach {{ __('links.position_not_found') }} @error('new_position') @include('includes.shared.context_error', ['message' => $errors->first('new_position')]) @enderror {{ __('actions.shared.save') }} {{ __('labels.main_structure') }} @error('main_structure') @include('includes.shared.context_error', ['message' => $errors->first('main_structure')]) @enderror {{ __('labels.secondary_structure') }} @error('secondary_structure') @include('includes.shared.context_error', ['message' => $errors->first('secondary_structure')]) @enderror {{ __('labels.start_date') }} @error('start_date') @include('includes.shared.context_error', ['message' => $errors->first('start_date')]) @enderror {{ __('labels.date_format') }} @error('start_date_format') @include('includes.shared.context_error', ['message' => $errors->first('start_date_format')]) @enderror {{ __('labels.full_date') }} {{ __('labels.month_and_year') }} {{ __('labels.year_only') }} {{ __('labels.end_date') }} @error('end_date') @include('includes.shared.context_error', ['message' => $errors->first('end_date')]) @enderror {{ __('labels.date_format') }} @error('end_date_format') @include('includes.shared.context_error', ['message' => $errors->first('end_date_format')]) @enderror {{ __('labels.full_date') }} {{ __('labels.month_and_year') }} {{ __('labels.year_only') }} @error('is_current') @include('includes.shared.context_error', ['message' => $errors->first('is_current')]) @enderror {{ __('labels.still_my_job') }} {{ __('actions.shared.save') }} {{ __('actions.shared.cancel') }} @endsection