@extends('admin.index') @section('title') Proje Kategorisini Düzenle - @endsection @section('header') @endsection @section('content')
@csrf
@foreach (get_languages() as $item)
@if ($errors->has('title.'.$item->lang_code))
    @foreach ($errors->messages('title.'.$item->lang_code) as $error) @foreach ($error as $err)
  • {{ $err }}
  • @endforeach @endforeach
@endif
@if ($errors->has('description.'.$item->lang_code))
    @foreach ($errors->messages('description.'.$item->lang_code) as $error) @foreach ($error as $err)
  • {{ $err }}
  • @endforeach @endforeach
@endif
@if ($errors->has('content.'.$item->lang_code))
    @foreach ($errors->messages('content.'.$item->lang_code) as $error) @foreach ($error as $err)
  • {{ $err }}
  • @endforeach @endforeach
@endif
@endforeach
@if ( $data->image != null )
{{ $data->content->name ?? '' }}

Yeni bir fotoğraf eklerseniz bu fotoğraf silinir.

@endif
@endsection @section('footer') @endsection