{{--synced with serve--}} @extends('admin.template.master') @section('stylesheets') @endsection @section('title')

Category Seo Redirect

@endsection @section('main-content')

Create New

{!! Form::open(['url' => '/admin/category-seo-redirects-create' ]) !!}
{!! Form::label('Source URL (Example: /xxxxx) use only slug without category ') !!} {!! Form::text('source', null, ['class' => 'form-control', 'placeholder' => 'Source URL', 'id' => 'source']) !!} @if ($errors->has('source')) {!! $errors->first('source') !!}@endif
{!! Form::label('Destination URL (Example: /xxxxx) Use Only Slug Without Category') !!} {!! Form::text('destination', null, ['class' => 'form-control', 'placeholder' => 'Destination URL', 'id' => 'destination']) !!} @if ($errors->has('destination')) {!! $errors->first('destination') !!}@endif
{!! Form::close() !!}
@endsection @section('javascripts') @endsection