@extends('layouts.admin') @section('title',__('Splash Screen')) @section('content')

{{__('Splash Screen')}}

{!! Form::model($splashscreen, ['method' => 'POST', 'action' => 'SplashScreenController@store', 'files' => true]) !!}
{!! Form::label('logo_enable', __('Logo Enable:')) !!}
{{ $errors->first('logo_enable') }}
{!! Form::label('logo',__('Logo'),['class'=>"col-xs-3"]) !!} {!! Form::file('logo', ['class' => 'input-file col-xs-9', 'id'=>'logo']) !!} {{--

Choose custom logo

--}} {{ $errors->first('logo') }}
@if ($auth_customize->image != null) @else
@endif
{!! Form::label('image', __('SelectAImage')) !!}

{!! Form::file('image', ['class' => 'input-file', 'id'=>'image']) !!}

{{__('Choose A Image')}}

{{ $errors->first('image') }}
{!! Form::close() !!}
@endsection @section('custom-script') @endsection