@extends('layouts.app') @section('css')
@endsection @section('page-header')
{{ __('New Step') }}
{{ __('Admin') }}
{{ __('Frontend Management') }}
{{ __('How it Works Section') }}
{{ __('New Step') }}
@endsection @section('content')
{{ __('Create New Step') }}
@csrf
{{ __('Step Title') }}
@error('title')
{{ $errors->first('title') }}
@enderror
{{ __('Step Order') }}
@error('order')
{{ $errors->first('order') }}
@enderror
{{ __('Step Description') }}
{{ old('description') }}
@error('description')
{{ $errors->first('description') }}
@enderror
{{ __('Return') }}
{{ __('Create') }}
@endsection @section('js') @endsection