@extends('admin.include.master') @section('title') لوحة التحكم | الصور التاريحية @endsection @section('content') اضافة صور تاريخية {{ Form::open(array('method' => 'post','files' => true,'url' =>'adminpanel/tribeabouts')) }} عنوان الصورة @if ($errors->has('title')) {{ $errors->first('title') }} @endif رفع صورة @if ($errors->has('image')) {{ $errors->first('image') }} @endif {!! Form::close() !!} كل الصور التاريخية @foreach($historyimages as $image) {{ Form::open(array('method' => 'DELETE','id' => 'del'.$image->id,"onclick"=>"return confirm('هل انت متأكد ؟!')",'files' => true,'url' => array('adminpanel/tribeabouts/'.$image->id))) }} {!! Form::close() !!} {{$image->title}} @endforeach @endsection