@extends('layouts.admin_app') @section('title','Add News - Admin Dashboard') @section('content')

Add News

@include('flash-message')
{{@csrf_field()}}
@if($errors->has('title_eng')) @component('components.error') {{$errors->first('title_eng')}} @endcomponent @endif
@if($errors->has('title_ar')) @component('components.error') {{$errors->first('title_ar')}} @endcomponent @endif
@if($errors->has('description_eng')) @component('components.error') {{$errors->first('description_eng')}} @endcomponent @endif
@if($errors->has('description_ar')) @component('components.error') {{$errors->first('description_ar')}} @endcomponent @endif
@if($errors->has('image')) @component('components.error') {{$errors->first('image')}} @endcomponent @endif
@if($errors->has('link')) @component('components.error') {{$errors->first('link')}} @endcomponent @endif
@endsection