Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
@extends('layouts.dashboard') @section('content')

{{ $section->title }}

@include('layouts.alert')
{!! Form::model($users, ['route' => $section->route, 'class' => 'form-validate', 'files'=> true,'enctype' => 'multipart/form-data', 'autocomplete' => 'off']) !!} @method($section->method)
@php $disabled= ''; @endphp
@if (!empty($profile->biography)) Image @else Image @endif
{!! Form::text('name', null, ['class' => 'form-control', 'placeholder'=> 'Enter full name', 'required' => 'required', $disabled , ]) !!}
{!! Form::text('email', null, ['class' => 'form-control', 'placeholder'=> 'Enter email', 'required' => 'required', $disabled , ]) !!}
{!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Enter user password' ]) !!}
{!! Form::password('password_confirmation', ['class' => 'form-control', 'placeholder' => 'Enter confirm password' ]) !!}
@if(auth()->user()->id == '1')
{!! Form::select('status', array(1 => 'Active', 0 => 'Inactive'), null, ['class' => 'form-control form-select', 'placeholder' => 'Select a option', 'required' => 'required', ]) !!}
@endif
{!! Form::button(' Save', ['type' => 'submit', 'class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection