@extends('adminlte::page')
@section('title', 'Crear nova entrevista')
@section('content_header')
Crear nova entrevista
@endsection
@section('breadcrumb')
{{ html()->form('POST')->route('citas.store')->open() }}
{{ html()->input('id')->name('id')->class(['hidden']) }}
{{ html()->label('Usuari') }}
{{ html()->input('user_id')->name('user_id')->required(true)->class(['form-control']) }}
{{ html()->label('Entrevistador') }}
{{ html()->input('entrevistador_id')->name('entrevistador_id')->required(true)->class(['form-control']) }}
{{ html()->label('Inici') }}
{{ html()->label('Inici') }}
{{ html()->label("Tipus d'entrevista") }}
{{ html()->submit('Guardar')->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection
@section('js')