@extends('layouts.admin') @section('styles') @endsection @section('content')
{{ trans('global.create') }} {{ trans('global.product.title_singular') }}
@csrf

@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

{{-- start specification --}}
Product Specification
{!! Form::date('dis_start_date', null, ['class' => 'form-control']) !!} {{ $errors->first('dis_start_date') }}
{!! Form::date('dis_end_date', null, ['class' => 'form-control']) !!} {{ $errors->first('dis_end_date') }}


{!! Form::file('dis_image', ['class' => 'form-control', 'accept' => 'image/*']) !!}
{{ $errors->first('dis_image') }}
{{--

--}}
{{--
--}}
{{-- end specification --}}
@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

@if($errors->has('description'))

{{ $errors->first('description') }}

@endif

@if($errors->has('details'))

{{ $errors->first('details') }}

@endif

@if($errors->has('specifications'))

{{ $errors->first('specifications') }}

@endif


@if($errors->has('news_banner_image'))
{{ $errors->first('news_banner_image') }}
@endif
@if($errors->has('products1_images'))

{{ $errors->first('products1_images') }}

@endif
@if($errors->has('products2_images'))

{{ $errors->first('products2_images') }}

@endif
@if($errors->has('products1_images'))

{{ $errors->first('products1_images') }}

@endif
@endsection @section('scripts') {{-- --}} @stop