@extends('backend.layouts.master') @section('title', "Home Setting") @section('css') @endsection @section('content')

Home Page Settings

@if($homesettings !== null) {!! Form::open(['url'=>route('homepage.update', @$homesettings->id),'id'=>'homesettings-info-form','class'=>'needs-validation','novalidate'=>'','method'=>'PUT','enctype'=>'multipart/form-data']) !!} @else {!! Form::open(['route' => 'homepage.store','method'=>'post','class'=>'needs-validation','id'=>'homesettings-info-form','novalidate'=>'','enctype'=>'multipart/form-data']) !!} @endif
...
Output Sample.
Please enter the description.
Please enter the button text.
Please enter the button link.
Other Details
welcome_image !== null) ? '' : 'required' }} class="profile-foreground-img-file-input" >
*use image minimum of 800 x 760px
Please select a image.
{!! Form::close() !!}
@if($homesettings !== null) @include('backend.home.includes.core_value_tab') @include('backend.home.includes.mission_vision_tab') {{-- @include('backend.home.includes.what_makes_us_tab')--}} @include('backend.home.includes.why_us_tab') @include('backend.home.includes.call_action_tab') @include('backend.home.includes.recruitment_process') @include('backend.home.includes.status') @endif
@endsection @section('js') @endsection