@extends('page') @section('content')

Edit Category

@if ($message = Session::get('success'))
{{ $message }}
@endif @if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif
@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($categories, ['method' => 'PATCH','route' => ['categories.update', $categories->id]]) !!}
{!! Form::text('category', null, array('placeholder' => 'Category Name','class' => 'form-control form-control-sm')) !!}
{!! Form::close() !!}

Guidelines

Guidelines comes here.
@endsection