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