@extends('backend.layouts.layout-2') @if($edit) @section('page-title', trans('app.edit_about')) @section('page-heading', trans('app.edit_about')) @else @section('page-title', trans('app.add_about')) @section('page-heading', trans('app.add_about')) @endif @section('content') @if($edit) {!! Form::open(['route' => ['abouts.update',$about->id], 'method' => 'PUT','files' => true, 'id' => 'about-form']) !!} @else {!! Form::open(['route' => 'abouts.store', 'files' => true, 'id' => 'about-form']) !!} @endif
@lang('app.about_details')
{!! Form::text('title',$edit ? $about->title : old('title'),['class' => 'form-control','placeholder' => trans('app.title')]) !!}
{!! Form::url('url',$edit ? $about->url : old('url'),['class' => 'form-control','placeholder' => trans('app.url')]) !!}
{!! Form::close() !!} @stop