@extends('layouts.admin') @section('content-title') {{ __('categories.Categories') }} @endsection @section('content-breadcrumbs') {{ Breadcrumbs::render('admin.categories.create')}} @endsection @section('content')
{!!Form::open()->locale('categories')->put()->route('category.store')!!} {!!Form::hidden('parent_id')->value( $parent_id )!!} {!!Form::text('libelle', 'Libelle')->placeholder(__('categories.Category name ...'))!!} {!!Form::textarea('description', 'Description')->placeholder(__('Category description ...'))!!} {!!Form::submit('Save')->id('my-btn')!!} {!!Form::close()!!}
@endsection