todo/resources/views/admin/tasks/create.blade.php

11 lines
236 B
PHP
Raw Normal View History

2024-05-07 10:35:04 +03:00
@extends('layouts.layout')
@section('content')
2024-05-08 16:16:00 +03:00
{{ html()->form('POST', route('tasks.store'))->class(['needs-validation', 'novalidate'])->open() }}
{{ html()->text('username') }}
{{ html()->form()->close() }}
2024-05-07 10:35:04 +03:00
@endsection