@extends('app') @section('content')

{{$country ? 'تصحيح' : 'إضافة'}} بلد


@if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif {!! Form::model($country, ['method' => $country ? 'PATCH' : 'POST','route' => $country ? ['admin.countries.update', $country->id] : 'admin.countries.store','id'=>'form_countries','files'=>true]) !!}
{!! Form::text('name', null, ['class' => 'form-control','required'=>true]) !!}
{!! Form::label('name', 'اسم', ['class' => 'form-label']) !!}
{{--*/ $return = $country ? $country->flag_image : false /*--}}
اختر صورة يتغيرون {!! Form::file('flag_image', ['class' => '']) !!} قص الصورة إزالة
الحد الأقصى المسموح به للحجم: 1024KB
منطقة الاقتصاص المسموح بهامنطقة الاقتصاص المسموح بها هي نسبة 600x4000px
ملحوظة! يتم اعتماد صورة مصغرة المرفقة في أحدث فايرفوكس، كروم، أوبرا، سفاري و إنترنيت إكسبلورر 10 فقط
{!! Form::submit($country ? 'تحديث' : 'حفظ', ['class' => 'btn btn-primary btn-cons','id' => 'btn-submit']) !!}
{!! Form::close() !!}
@endsection @section('page_script') @endsection