@extends('admin.layout') @section('content')

{{ __('faqs') }}

{{ __('Edit faq') }}

@csrf
@if ($errors->has('language_id'))

{{ $errors->first('language_id') }}

@endif
@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('content'))

{{ $errors->first('content') }}

@endif
@if ($errors->has('serial_number'))

{{ $errors->first('serial_number') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@endsection