@extends('admin.layout.layout') @section('title', 'Kullanıcı Düzenle') @section('styles') @parent @stop @section('content')

Kullanıcı Düzenle

{{ $user->name }} {{ $user->surname }}

@csrf @method('PUT')
@if(Auth::user()->is_admin == 1)
@else @endif
@foreach ($posts as $post) @endforeach
İlan Kodu Banka Emlak Tipi Emlak Alt Tipi İlan Başlığı İl İlçe Durum
id, $userPermissionArray)) checked value="1" @else value="0" @endif class="input-check" name="{{ $post->id }}"> {{ $post->code }} {{ $post->bank->name }} {{ config('enums.property_type')[$post->postable->property_type] }} @isset($post->postable->house_type) {{ config('enums.house_type')[$post->postable->house_type] }} @endisset @isset($post->postable->workplace_type) {{ config('enums.workplace_type')[$post->postable->workplace_type] }} @endisset @isset($post->postable->land_type) {{ config('enums.land_type')[$post->postable->land_type] }} @endisset {{ $post->title }} {{ $post->postable->country }} {{ $post->postable->district }} {{ config('enums.tender_status')[$post->tender_status] }}
@if($errors->any())
@foreach($errors->all() as $error) @endforeach
@endif
@stop @section('scripts') @parent @endsection