Файловый менеджер - Редактировать - /home/clickysoft/public_html/resources/views/admin/currencies/create.blade.php
Назад
@extends('layouts.admin') @section('content') <div class="card"> <div class="card-header"> {{ trans('global.create') }} {{ trans('cruds.currency.title_singular') }} </div> <div class="card-body"> <form method="POST" action="{{ route("admin.currencies.store") }}" enctype="multipart/form-data"> @csrf <div class="form-group"> <label class="required" for="name">{{ trans('cruds.currency.fields.name') }}</label> <input class="form-control {{ $errors->has('name') ? 'is-invalid' : '' }}" type="text" name="name" id="name" value="{{ old('name', '') }}" required> @if($errors->has('name')) <span class="text-danger">{{ $errors->first('name') }}</span> @endif <span class="help-block">{{ trans('cruds.currency.fields.name_helper') }}</span> </div> <div class="form-group"> <label class="required" for="code">{{ trans('cruds.currency.fields.code') }}</label> <input class="form-control {{ $errors->has('code') ? 'is-invalid' : '' }}" type="text" name="code" id="code" value="{{ old('code', '') }}" required> @if($errors->has('code')) <span class="text-danger">{{ $errors->first('code') }}</span> @endif <span class="help-block">{{ trans('cruds.currency.fields.code_helper') }}</span> </div> <div class="form-group"> <label class="required" for="symbol">{{ trans('cruds.currency.fields.symbol') }}</label> <input class="form-control {{ $errors->has('symbol') ? 'is-invalid' : '' }}" type="text" name="symbol" id="symbol" value="{{ old('symbol', '') }}" required> @if($errors->has('symbol')) <span class="text-danger">{{ $errors->first('symbol') }}</span> @endif <span class="help-block">{{ trans('cruds.currency.fields.symbol_helper') }}</span> </div> <div class="form-group"> <button class="btn btn-danger" type="submit"> {{ trans('global.save') }} </button> </div> </form> </div> </div> @endsection
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка