@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
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
@endsection @section('script')