@extends('adminlte::page')
@section('title', 'Afegir certificat')
@section('content_header')
Afegir certificat
@endsection
@section('breadcrumb')
{{ html()->form('POST')->route('certificados.store')->acceptsFiles()->open() }}
{{ html()->input('id')->name('id')->class(['hidden']) }}
{{ html()->label('Usuari') }}
{{ html()->select('user_id')->options($users)->value(null)->class('form-control select-user')->required(true) }}
{{ html()->label('Curso/Taller') }}
{{ html()->select('cursotaller_id')->options($cursos)->value(null)->class('form-control select-curso')->required(true) }}
{{ html()->submit('Guardar')->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection
@section('js')
@endsection