@extends('layouts.app_new') @section('title','Prices') @section('content') {{--
--}}
@csrf @method('put')
{{ __('pricing.COUNTRY_OF_RESIDENCE') }}
@foreach ($countries as $country)
id) selected @endif>{{ $country->getName() }}
@endforeach
{{ __('pricing.DESTINATION_COUNTRY') }}
@foreach ($countries as $country)
{{ $country->getName() }}
@endforeach
{{ __('pricing.DATE') }}
{{ __('pricing.NUMBER_OF_TRAVELERS') }}
{{ __('pricing.DAYS_NUM') }}
{{ __('pricing.TRAVELERS_BIRTH_DATES') }}
@if (!empty(old('birth'))) @foreach (old('birth') as $key => $value)
{{ __('pricing.TRAVELER_NUMBER') }}$key
@endforeach @else
{{ __('pricing.TRAVELER_NUMBER') }} 1
@endif {{-- @if(!empty(old('birth')) --}} {{-- @endforeach @endif --}}
{{ __('Submit') }}
{{--
--}} @endsection @section('script') @endsection