@extends('admin.layouts.master') @section('content')

Setting

@csrf
{!! Form::label('name', 'WebSite Title English *') !!} {!! Form::text('website_title', $website_title, ['class' => 'form-control','placeholder' => 'Enter website title']) !!} @if ($errors->has('website_title')) {{ $errors->first('website_title') }} @endif
{!! Form::label('name', 'WebSite Title Hindi *') !!} {!! Form::text('websitetitle_hnd', $websitetitle_hnd, ['class' => 'form-control','placeholder' => 'Enter website title hindi']) !!} @if ($errors->has('websitetitle_hnd')) {{ $errors->first('websitetitle_hnd') }} @endif
{!! Form::label('name', 'Lock Screen Time *') !!} {!! Form::number('lock_time', $lock_time, ['class' => 'form-control','placeholder' => 'Enter lock time']) !!} @if ($errors->has('lock_time')) {{ $errors->first('lock_time') }} @endif
{!! Form::label('name', 'Message Subject *') !!} {!! Form::text('messagesub', $messagesub, ['class' => 'form-control','placeholder' => 'Enter message subject']) !!} @if ($errors->has('messagesub')) {{ $errors->first('messagesub') }} @endif
{!! Form::label('name', 'Logo Image *') !!} {!! Form::file('logo_image', ['class' => 'form-control']) !!} @if ($errors->has('logo_image')) {{ $errors->first('logo_image') }} @endif
@if($logo_image) @endif
@endsection @section('after-scripts') @endsection