@extends('adminlte::page') @section('title', 'Afegir categoria') @section('content_header') Afegir categoria @endsection @section('breadcrumb') @endsection @section('css') @endsection @section('content')
{{ html()->form('POST')->route('categorias.store')->acceptsFiles()->open() }}
{{ html()->input('id')->name('id')->class(['hidden']) }}
{{ html()->label('Nom de la categoria') }} {{ html()->input('name')->name('name')->required(true)->class(['form-control']) }}
{{ html()->submit('Guardar')->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection @section('js') @endsection