@extends('layouts.master') @section('title',__('Signin And SignUp Customization')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{__('Signin And SignUp Customization')}}
{!! Form::model($auth_customize, ['method' => 'POST', 'action' => 'AuthCustomizeController@store', 'files' => true]) !!}
{!! Form::label('detail',__('Heading Text')) !!} {!! Form::textarea('detail', null, ['id' => 'editor1', 'class' => 'form-control']) !!} {{ $errors->first('detail') }}
@if ($auth_customize->image != null) @else
@endif
{!! Form::label('image', __('Select A Image')) !!}

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

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

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