@extends('admin.include.master') @section('title') لوحة التحكم | تعديل خبر @endsection @section('content')

تعديل خبر - {{$uparticle->title}}

{{ Form::open(array('method' => 'PATCH','files' => true,'url' =>'adminpanel/tribearticles/'.$uparticle->id )) }}
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('items'))
{{ $errors->first('items') }}
@endif

@foreach($articleimages as $image)
@endforeach

محتوى الخبر

@if ($errors->has('desc'))
{{ $errors->first('desc') }}
@endif
{!! Form::close() !!}
@endsection