@extends('admin.layout') @if (!empty($process->language) && $process->language->rtl == 1) @section('styles') @endsection @endif @section('content')
{{ __('Edit Process') }}
{{ __('Back') }}
@csrf
...

{{ __('Upload only ZIP Files, Max File Size is 5 MB') }}

@if ($errors->has('title'))

{{ $errors->first('title') }}

@endif
@if ($errors->has('subtitle'))

{{ $errors->first('subtitle') }}

@endif
@if ($errors->has('serial_number'))

{{ $errors->first('serial_number') }}

@endif

{{ __('The higher the serial number is, the later the process will be shown.') }}

@endsection