@extends('layouts.master') @section('title') @lang('Title') @endsection @section('css') @endsection @section('content')

Product

Product
@if ($message = Session::has('success'))
{{ $message }}
@endif
{{ csrf_field() }} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('summary'))
{{ $errors->first('summary') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Yes
@if ($errors->has('cat_id'))
{{ $errors->first('cat_id') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@if ($errors->has('discount'))
{{ $errors->first('discount') }}
@endif
@if ($errors->has('stock'))
{{ $errors->first('stock') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@endsection @section('script')