@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.rtoOffic.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.rtoOffic.fields.name_helper') }}
@if($errors->has('code')) {{ $errors->first('code') }} @endif {{ trans('cruds.rtoOffic.fields.code_helper') }}
@if($errors->has('state')) {{ $errors->first('state') }} @endif {{ trans('cruds.rtoOffic.fields.state_helper') }}
@endsection