@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Create New Feature') }}

@csrf
{{ __('Feature Title') }}
@error('title')

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

@enderror
{{ __('Feature Banner') }}
@error('image')

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

@enderror
{{ __('Feature Status') }}
{{ __('Feature Description') }}
@error('description')

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

@enderror
{{ __('Return') }}
@endsection @section('js') @endsection