@extends('layouts.admin') @section('title') Admin | Add New Product @endsection @section('content')

Create/Product

Product Create
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
{{config('app.currency_sign')}} @if ($errors->has('price')) {{ $errors->first('price') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('Main Image')) {{ $errors->first('main_image') }} @endif
@if ($errors->has('Main Image')) {{ $errors->first('gallery_images') }} @endif
@if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif
@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif
@if ($errors->has('meta_keywords')) {{ $errors->first('meta_keywords') }} @endif
Cancel
@endsection @section('scripts') @endsection