@extends('backend.app') @section('content')

Yeni Sayfa Ekle


@if ($errors->any())
Hata...! zorunlu alanları giriniz.
@endif
@csrf
{{Form::label('name', 'Sayfa Adı', ['class' => 'col-md-4 col-form-label text-md-right'])}}
{{ Form::text('name', '', ['class' => ($errors->has('name')) ? 'form-control is-invalid' : 'form-control']) }} @error('name') {{ $message }} @enderror
{{Form::label('descreption', 'Sayfa Açıklama', ['class' => 'col-md-4 col-form-label text-md-right'])}}
{{ Form::text('descreption', '', ['class' => ($errors->has('descreption')) ? 'form-control is-invalid' : 'form-control']) }} @error('name') {{ $message }} @enderror
{{Form::label('tags', 'Anahtar Kelimeler', ['class' => 'col-md-4 col-form-label text-md-right'])}}
{{ Form::text('tags', '', ['class' => ($errors->has('tags')) ? 'form-control is-invalid' : 'form-control']) }} @error('name') {{ $message }} @enderror
@endsection @section('js') @endsection