@extends('layouts.app') @section('styles') @endsection @section('content')

{{ __('Add Algorithm') }}

@csrf
@include('components.translatable-input', [ 'name' => 'name', 'type' => 'text', 'model' => null, 'required' => true ]) @error('name')
{{ $message }}
@enderror {{ __('Internal name for reference') }}
@include('components.translatable-input', [ 'name' => 'text', 'type' => 'textarea', 'model' => null, 'rows' => 4 ]) {{ __('This text will be shown when all conditions are met') }}

{{ __('Cancel') }}
@endsection @push('scripts') @endpush