@extends('admin.include.master') @section('title') لوحة التحكم | اضافة قصيدة جديدة @endsection @section('content')

اضافة قصيدة جديدة

{{ Form::open(array('method' => 'POST','files' => true,'url' =>'adminpanel/tribepoems' )) }}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('image'))
{{ $errors->first('image') }}
@endif

محتوى القصة او القصيدة

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