@extends('Layouts.adminLayout') @section('title') {{__('Insert Comment')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
{{__('Insert Comment')}}
@CSRF
@if ($errors->has('lang'))
{{ $errors->first('lang') }}
@endif
@if ($errors->has('fullname'))
{{ $errors->first('fullname') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
  • {{__('Blog')}}
  • {{__('Product')}}
  • @if ($errors->has('type'))
    {{ $errors->first('type') }}
    @endif


@if ($errors->has('text'))
{{ $errors->first('text') }}
@endif
@endsection @section('script') @endsection