{{-- Extends layout --}} @extends('front.layouts.app') {{-- Content --}} @section('content')
@csrf @method('PATCH')
@component('front.components.select_recursive', [ 'label' => __('Kategori'), 'name' => 'determination_category_id', 'options' => $categories, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => old('determination_category_id') ? old('determination_category_id') : null, 'suffix' => __('Tanımladığını canlı türüne ilişkin kategoriyi seçiniz. Sadece bir seçim yapabilirsiniz.'), 'required' => 'REQUIRED', ]) @endcomponent @component('front.components.determination_type_select', [ 'label' => __('Kayıt tipi'), 'name' => 'determination_type_id', 'options' => $types, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => old('determination_type_id') ? old('determination_type_id') : null, 'placeholder' => __('Lütfen tespit tipi seçiniz'), 'required' => 'REQUIRED', ]) @endcomponent @component('front.components.determination_specie_guess', [ 'label' => __('Canlı Türü (Bilimsel İsim)'), 'name' => 'specie_guess', 'value' => old('specie_guess') ? old('specie_guess') : null, 'placeholder' => __('Lütfen tür tanımı giriniz'), 'suffix' => __(' Türü tanımlamak için kutuya tür ismini giriniz. Tanımladığnız tür bir uzman tarafından onaylandığı taktirde kesinlik kazanacaktır. '), ]) @endcomponent @component('front.components.images_upload', [ 'label' => __(' Canlının resimlerini giriniz..'), 'suffix' => __('Yüklemek istediğiniz fotoğraf en fazla 1.5 MB olmalıdır. İlk seçtiğiniz resim asıl resim, diğerleri ise tespitinizin destekleyici resimleri olarak kaydedilecektir. Yüklediğiniz resimlerin sırasını ok simgelerine tıklayarak değiştirebilirsiniz.'), ]) @endcomponent @component('front.components.date', [ 'label' => __('Tarih'), 'name' => 'seen_at', 'value' => old('seen_at') ? old('seen_at') : null, 'placeholder' => __('Tespit edilen tarih'), 'suffix' => __('DİKKAT...Tespitinizin tanımlanabilmesi için sağdaki tarih seçiçiyi kullanınız...'), 'required' => 'REQUIRED', ]) @endcomponent @component('front.components.determination_equipment_autocomplete', [ 'label' => __('Ekipman'), 'name' => 'determination_equipment_name', 'value' => old('determination_equipment_name'), 'placeholder' => __('Ekipman giriniz'), 'suffix' => __('Ekipmanın gövde modelini belirtin.. '), ]) @endcomponent @component('front.components.determination_equipment_lens_autocomplete', [ 'label' => __('Ekipman'), 'name' => 'determination_equipment_lens_name', 'value' => old('determination_equipment_lens_name'), 'placeholder' => __('Lens giriniz'), 'suffix' => __('Ekipmanın lens modelini belirtin.. '), ]) @endcomponent @component('front.components.input', [ 'label' => __('Başlık'), 'name' => 'title', 'value' => old('title'), 'placeholder' => __('Lütfen başlık giriniz'), 'suffix' => __('Tespitin sitede hangi isimle görüntülenmesini istiyorsunuz? '), 'required' => 'REQUIRED', ]) @endcomponent @component('front.components.textarea', [ 'label' => __('Açıklama'), 'name' => 'text', 'value' => old('text'), 'placeholder' => 'Lütfen açıklama giriniz', 'class' => 'editor', 'suffix' => __('Lütfen gözlem detaylarını giriniz...'), ]) @endcomponent @component('front.components.determination_map_locations') @endcomponent @component('front.components.select', [ 'label' => __('Ülke'), 'name' => 'determination_country_id', 'options' => $countries, 'option_id' => 'id', 'option_value' => 'title', 'selected_value' => old('determination_country_id') ? old('determination_country_id') : App\Models\DeterminationCountry::TURKEY, 'suffix' => __('Lütfen bir ülke seçiniz...'), 'required' => 'REQUIRED', ]) @endcomponent @component('front.components.determination_city', [ 'label' => __('Şehir'), 'name' => 'determination_city_title', 'selected_value' => null, 'value' => old('determination_city_title'), 'placeholder' => 'Lütfen şehir giriniz', 'required' => 'REQUIRED', ]) @endcomponent
@endsection @section('styles') @endsection @section('scripts') {{-- Google Maps --}} @endsection