@extends('admin.index') @section('title'){{ translate("add_new_feature_title") }} - @endsection @section('header') @endsection @section('content')
@csrf
@foreach (languages() as $item)
@if ($errors->has('name.'.$item->lang_code))
    @foreach ($errors->messages('name.'.$item->lang_code) as $error) @foreach ($error as $err)
  • {{ $err }}
  • @endforeach @endforeach
@endif
@endforeach
@endsection @section('footer') @endsection