@extends('admin.index') @section('title'){{ translate("create_new_project_category") }} - @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
@endsection @section('footer') @endsection