@extends('admin.index') @section('title') Dil Ayarları - @endsection @section('header') @endsection @section('content')
@csrf
@foreach ($languages as $item)
@endforeach
Dil tanımı değiştirmenizi önermiyoruz. Dil tanımları sitenizi oluşturan yazılım ekibinin sitenize yerleştirdiği değerdir. Sitenizdeki bir kısmın dil karşılığını değiştirmek istiyorsanız, yukarıdaki dil listesinden seçim yapıp Değer kısmını güncelleyiniz.
@if (isset($errors->messages()['string_key']))
    @foreach ($errors->messages()['string_key'] as $error)
  • {{ $error }}
  • @endforeach
@endif

@endsection @section('footer') @endsection